summaryrefslogtreecommitdiffstats
path: root/xz/Pkgfile
blob: fef3f68d8a902522e94422c105fdc20f03ce5ce2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
description="Compression utility using the lzma algorithm, successor of lzma-utils."
packager="Juergen Daubert <juergen DOT daubert AT t-online DOT de>"
maintainer="Lukc <lukc AT upyum DOT com>"
url="http://tukaani.org/xz/"
depends=()

name=xz
version=4.999.9beta-212-gacbc
release=1
source=(http://crux.nu/files/distfiles/$name-$version.tar.gz)
build () 
{ 
	cd $name-$version;
	./configure \
		${CHOST:+--build=${CHOST}} \
		${CTARGET:+--host=${CTARGET}} \
		--prefix=$prefix \
		--mandir=$mandir \
		$(use_enable nls) \
		--enable-dynamic;
	make;
	make DESTDIR=$PKG install;
}