1 | # $Id: $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name lzop |
---|
5 | version 1.01 |
---|
6 | categories sysutils compression |
---|
7 | maintainers blb@pobox.com |
---|
8 | description File compressor very similar to gzip which favors speed over \ |
---|
9 | compression ratio. |
---|
10 | long_description ${description} |
---|
11 | |
---|
12 | homepage http://www.lzop.org/ |
---|
13 | master_sites http://www.lzop.org/download/ |
---|
14 | |
---|
15 | platforms darwin |
---|
16 | checksums md5 de1f90bc21a0e56a27f39322f56a275d |
---|
17 | |
---|
18 | depends_lib lib:liblzo.1:lzo |
---|
19 | |
---|
20 | configure.env CPPFLAGS="-I${prefix}/include" LDFLAGS="-L${prefix}/lib" |
---|
21 | |
---|
22 | configure.args --mandir=${prefix}/share/man |
---|
23 | |
---|
24 | post-destroot { |
---|
25 | file mkdir "${destroot}/${prefix}/share/doc/lzop" |
---|
26 | system "install -m 644 ${worksrcpath}/doc/lzop.html ${worksrcpath}/doc/lzop.ps ${worksrcpath}/doc/lzop.tex ${worksrcpath}/doc/lzop.txt ${destroot}/${prefix}/share/doc/lzop" |
---|
27 | } |
---|
28 | |
---|