| 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.2 |
|---|
| 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 f825bc20e81be7448807ef3aba313735 \ |
|---|
| 17 | sha1 0c0d226e01a681bea800c121b54926030107efae \ |
|---|
| 18 | rmd160 0506955b9c851117678e959da8ed58fb10e275d6 |
|---|
| 19 | depends_build port:texinfo |
|---|
| 20 | use_parallel_build yes |
|---|
| 21 | |
|---|
| 22 | post-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 | } |
|---|