blob: e91f43afe7c0213537d59e91c15acc0421c0bf45 (
plain)
1 # Description: Compression utility using the lzma algorithm, successor of lzma-utils
2 # URL: http://tukaani.org/xz/
3 # Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
4
5 name=xz
6 version=4.999.9beta-174-g41bc
7 release=1
8 source=(http://tukaani.org/xz/$name-$version.tar.gz)
9
10 build() {
11 cd $name-$version
12 ./configure --prefix=/usr \
13 --mandir=/usr/man \
14 --disable-nls \
15 --enable-dynamic
16 make
17 make DESTDIR=$PKG install
18 rm -r $PKG/usr/share
19 }
|