Ticket #1328: Portfile

File Portfile, 953 bytes (added by blb@…, 20 years ago)

Portfile

Line 
1# $Id: $
2
3PortSystem              1.0
4name                    lzo
5version                 1.08
6categories              devel compression
7maintainers             blb@pobox.com
8description             Real-time data compression library
9long_description \
10        LZO is a portable lossless data compression library written in ANSI C. \
11        It offers pretty fast compression and very fast decompression. \
12        Decompression requires no memory. \
13        In addition there are slower compression levels achieving a quite \
14        competitive compression ratio while still decompressing at \
15        this very high speed. \
16        LZO is distributed under the GNU General Public License.
17
18homepage                http://www.oberhumer.com/opensource/lzo/
19master_sites    http://www.oberhumer.com/opensource/lzo/download/
20
21platforms               darwin
22checksums               md5 ab94d3da364c7cbd5b78d76f1875b0f6
23
24configure.args  --enable-shared --disable-static
25
26post-destroot {
27        file mkdir "${destroot}/${prefix}/share/doc/lzo"
28        system "install -m 644 ${worksrcpath}/doc/* ${destroot}/${prefix}/share/doc/lzo"
29}
30