mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
28 lines
1.1 KiB
Tcl
28 lines
1.1 KiB
Tcl
# -*- 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
|
|
|
|
PortSystem 1.0
|
|
|
|
name makepak
|
|
version 0.0.2
|
|
categories archivers
|
|
platforms darwin freebsd linux
|
|
license GPL-3+
|
|
maintainers nomaintainer
|
|
description Quake I/II .PAK Archiving Utility
|
|
long_description MakePAK is a command-line tool for the creation of Quake \
|
|
.PAK files.
|
|
homepage https://github.com/Luiji/MakePAK
|
|
master_sites https://github.com/downloads/Luiji/MakePAK/
|
|
checksums md5 f825bc20e81be7448807ef3aba313735 \
|
|
sha1 0c0d226e01a681bea800c121b54926030107efae \
|
|
rmd160 0506955b9c851117678e959da8ed58fb10e275d6
|
|
depends_build port:texinfo
|
|
depends_lib port:gettext
|
|
|
|
post-destroot {
|
|
set docdir ${prefix}/share/doc/${name}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 644 -W ${worksrcpath} README NEWS AUTHORS THANKS COPYING \
|
|
${destroot}${docdir}
|
|
}
|