Ticket #23033: Portfile

File Portfile, 1.2 KB (added by jlaurila@…, 14 years ago)
Line 
1# $Id$
2
3PortSystem              1.0
4
5name                    pigz
6version                 2.1.5
7categories              archivers
8platforms               darwin
9maintainers             gmail.com:jlaurila
10description             Parallel implementation of gzip
11long_description \
12                        pigz (pig-zee), which stands for parallel implementation \
13                        of gzip, is a fully functional replacement for gzip that \
14                        exploits multiple processors and multiple cores to the \
15                        hilt when compressing data.
16homepage                http://www.zlib.net/pigz/
17master_sites            ${homepage}
18checksums               md5 580873165ef3a369674f0c0af4c96d67 \
19                        sha1 9e169aa2f1b08be057760c03c480e64651fa3299 \
20                        rmd160 b02f012e9f87f9f69309574ef7000bf6242b2114
21license                 amended BSD-like, see README
22depends_lib             port:zlib
23use_configure           no
24build.target            {}
25destroot {
26         xinstall -m 755 -d ${destroot}${prefix}/bin
27         xinstall -m 755 ${worksrcpath}/pigz ${worksrcpath}/unpigz ${destroot}${prefix}/bin
28         xinstall -m 755 -d ${destroot}${prefix}/share/man/man1
29         xinstall -m 644 ${worksrcpath}/pigz.1 ${destroot}${prefix}/share/man/man1
30         ln -s pigz.1 ${destroot}${prefix}/share/man/man1/unpigz.1
31         xinstall -m 755 -d ${destroot}${prefix}/share/doc/${distname}
32         xinstall -m 644 ${worksrcpath}/README ${destroot}${prefix}/share/doc/${distname}
33}
34
35