Ticket #28579: Portfile.2

File Portfile.2, 1.1 KB (added by luiji@…, 13 years ago)

portfile for 0.0.2

Line 
1# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
2# $Id$
3
4PortSystem           1.0
5name                 makepak
6version              0.0.2
7categories           archivers
8platforms            darwin freebsd linux
9license              GPLv3+
10maintainers          users.sourceforge.net:luiji
11description          Quake I/II .PAK Archiving Utility
12long_description     MakePAK is a command-line tool for the creation of Quake \
13                     .PAK files.
14homepage             https://github.com/Luiji/MakePAK
15master_sites         https://github.com/downloads/Luiji/MakePAK/
16checksums            md5     f825bc20e81be7448807ef3aba313735 \
17                     sha1    0c0d226e01a681bea800c121b54926030107efae \
18                     rmd160  0506955b9c851117678e959da8ed58fb10e275d6
19depends_build        port:texinfo
20use_parallel_build   yes
21
22post-destroot {
23    set docdir ${prefix}/share/doc/${name}
24    xinstall -d ${destroot}${docdir}
25    xinstall -m 644 -W ${worksrcpath} README NEWS AUTHORS THANKS COPYING \
26        ${destroot}${docdir}
27}