core/xz/Pkgfile

20 lines
537 B
Plaintext
Raw Normal View History

2009-06-11 14:52:08 +02:00
# Description: Compression utility using the lzma algorithm, successor of lzma-utils
# URL: http://tukaani.org/xz/
2009-07-17 12:19:21 +02:00
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
2009-06-11 14:52:08 +02:00
name=xz
2010-10-13 14:33:58 +02:00
version=4.999.9beta-212-gacbc
2009-07-17 12:19:21 +02:00
release=1
2010-11-30 16:51:15 +01:00
source=(http://crux.nu/files/distfiles/$name-$version.tar.gz)
2009-06-11 14:52:08 +02:00
build() {
2009-07-17 12:19:21 +02:00
cd $name-$version
./configure --prefix=/usr \
--mandir=/usr/man \
2009-08-14 12:08:55 +02:00
--disable-nls \
--enable-dynamic
2009-06-11 14:52:08 +02:00
make
make DESTDIR=$PKG install
2009-07-17 12:19:21 +02:00
rm -r $PKG/usr/share
2009-06-11 14:52:08 +02:00
}