|
Revision 43918, 1.3 KB
(checked in by jeremyhu@…, 3 weeks ago)
|
|
lzo: autoreconf to build universal
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
| Line | |
|---|
| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.0 |
|---|
| 4 | name lzo |
|---|
| 5 | version 1.08 |
|---|
| 6 | categories devel compression |
|---|
| 7 | maintainers blb |
|---|
| 8 | description Real-time data compression library |
|---|
| 9 | long_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 | |
|---|
| 18 | platforms darwin |
|---|
| 19 | |
|---|
| 20 | homepage http://www.oberhumer.com/opensource/lzo/ |
|---|
| 21 | master_sites http://www.oberhumer.com/opensource/lzo/download/LZO-v1/ |
|---|
| 22 | |
|---|
| 23 | checksums md5 ab94d3da364c7cbd5b78d76f1875b0f6 |
|---|
| 24 | |
|---|
| 25 | depends_build \ |
|---|
| 26 | port:autoconf \ |
|---|
| 27 | port:automake \ |
|---|
| 28 | port:libtool |
|---|
| 29 | |
|---|
| 30 | use_autoreconf yes |
|---|
| 31 | autoreconf.args -fvi |
|---|
| 32 | |
|---|
| 33 | configure.ccache no |
|---|
| 34 | configure.args --enable-shared --disable-static |
|---|
| 35 | |
|---|
| 36 | post-destroot { |
|---|
| 37 | xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} |
|---|
| 38 | xinstall -m 644 -W ${worksrcpath}/doc LTEST.TXT LZO.FAQ LZO.TXT \ |
|---|
| 39 | LZOAPI.TXT ${destroot}${prefix}/share/doc/${name} |
|---|
| 40 | } |
|---|
| 41 | |
|---|
| 42 | livecheck.check regex |
|---|
| 43 | livecheck.url ${master_sites} |
|---|
| 44 | livecheck.regex "${name}-(1.\[0-9\]+)${extract.suffix}" |
|---|