core/xz/Pkgfile

23 lines
559 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/
2011-01-08 19:14:43 +01:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
2009-06-11 14:52:08 +02:00
name=xz
2011-01-08 19:14:43 +01:00
version=5.0.0
2009-07-17 12:19:21 +02:00
release=1
2011-01-08 19:14:43 +01: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
2011-01-08 19:14:43 +01:00
ln -s liblzma.so.5.0.0 $PKG/usr/lib/liblzma.so.0
2009-07-17 12:19:21 +02:00
rm -r $PKG/usr/share
2009-06-11 14:52:08 +02:00
}