diff options
author | wiz <wiz@pkgsrc.org> | 2005-07-14 20:02:47 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-07-14 20:02:47 +0000 |
commit | 9a06144851bda67b560525ae990a4c2455a1eca5 (patch) | |
tree | 70cd817bfd110d1f5160db80dc6b2f77aad7eaa9 /archivers/lzo/Makefile | |
parent | 16e257042376e4ad48b91076639527f2ca73a5aa (diff) | |
download | pkgsrc-9a06144851bda67b560525ae990a4c2455a1eca5.tar.gz |
Initial import of lzo-2.01, the new major version of archivers/liblzo.
LZO is a portable lossless data compression library written in ANSI
C. It offers pretty fast compression and very fast decompression.
Decompression requires no memory.
In addition there are slower compression levels achieving a quite
competitive compression ratio while still decompressing at this
very high speed.
The LZO algorithms and implementations are copyrighted OpenSource
distributed under the GNU General Public License.
Diffstat (limited to 'archivers/lzo/Makefile')
-rw-r--r-- | archivers/lzo/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/archivers/lzo/Makefile b/archivers/lzo/Makefile new file mode 100644 index 00000000000..28bf30edec0 --- /dev/null +++ b/archivers/lzo/Makefile @@ -0,0 +1,19 @@ +# $NetBSD: Makefile,v 1.1.1.1 2005/07/14 20:02:48 wiz Exp $ +# + +DISTNAME= lzo-2.01 +CATEGORIES= archivers +MASTER_SITES= http://ftp.uni-koeln.de/util/arc/ \ + http://www.oberhumer.com/opensource/lzo/download/ + +MAINTAINER= tech-pkg@NetBSD.org +HOMEPAGE= http://www.oberhumer.com/opensource/lzo/ +COMMENT= Portable lossless data compression library + +PKG_INSTALLATION_TYPES= overwrite pkgviews + +GNU_CONFIGURE= YES +USE_LIBTOOL= YES +TEST_TARGET= test + +.include "../../mk/bsd.pkg.mk" |