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 | |
---|
4 | PortSystem 1.0 |
---|
5 | name makepak |
---|
6 | version 0.0.0 |
---|
7 | categories archivers |
---|
8 | platforms darwin freebsd linux |
---|
9 | license GPLv3+ |
---|
10 | maintainers users.sourceforge.net:luiji |
---|
11 | description Quake I/II .PAK Archiving Utility |
---|
12 | long_description MakePAK is a command-line tool for the creation of Quake \ |
---|
13 | .PAK files. |
---|
14 | homepage https://github.com/Luiji/MakePAK |
---|
15 | master_sites https://github.com/downloads/Luiji/MakePAK/ |
---|
16 | checksums md5 da11a1e3a0d51f3e07fcc0d7adc9a386 \ |
---|
17 | sha1 574d6bd752d5ee93cf6f9c454c64cce3a1097bcf \ |
---|
18 | rmd160 e637bb15c82ab6399701deb1db044fd2c0efe1ae |
---|
19 | depends_build port:texinfo |
---|
20 | use_parallel_build yes |
---|
21 | |
---|
22 | # NOTE: This patch will not be needed in the next release of MakePAK. |
---|
23 | patchfiles patch-src-pak.c.diff |
---|
24 | |
---|
25 | post-destroot { |
---|
26 | set docdir ${prefix}/share/doc/${name} |
---|
27 | xinstall -d ${destroot}${docdir} |
---|
28 | xinstall -m 644 -W ${worksrcpath} README NEWS AUTHORS THANKS COPYING \ |
---|
29 | ${destroot}${docdir} |
---|
30 | } |
---|