d460e8df37
The purpose of LZMA utils is to make the usage of LZMA compression easy on *NIX based systems. The average compression ratio is usually 30% better than 'gzip --best' and 15% better than 'bzip2 --best'. Some files can be compressed even over 50% smaller than with gzip. (read DESCR for more...) thanks to todd@ for testing on 7 archs, and to everyone else who tested. help/ok naddy@, ok alek@, and before the latest tweaks: ok todd@
27 lines
518 B
Makefile
27 lines
518 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2006/01/30 13:29:00 steven Exp $
|
|
|
|
COMMENT= "LZMA utils - make usage of LZMA compression easy"
|
|
|
|
DISTNAME= lzma-4.27.1
|
|
CATEGORIES= archivers
|
|
|
|
HOMEPAGE= http://tukaani.org/lzma/
|
|
|
|
MAINTAINER= Steven Mestdagh <steven@openbsd.org>
|
|
|
|
# GPL + LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
WANTLIB= c m stdc++
|
|
|
|
MAKE_FLAGS= MYCC="${CC}" MYCXX="${CXX}"
|
|
|
|
REGRESS_TARGET= test
|
|
|
|
.include <bsd.port.mk>
|