blob: 216dde654a9bad65c065566f445d392c336469ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Description: Compression utility using the lzma algorithm, successor of lzma-utils
# URL: http://tukaani.org/xz/
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
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 --prefix=/usr \
--mandir=/usr/man \
--disable-nls \
--enable-dynamic
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share
}
|