core/xz/Pkgfile

20 lines
528 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-06-13 17:02:32 +02:00
version=4.999.9beta-143-g3e49
2009-07-17 12:19:21 +02:00
release=1
2010-05-27 12:05:21 +02:00
source=(http://tukaani.org/xz/$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
}