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
|
2015-02-28 12:31:34 +01:00
|
|
|
version=5.2.1
|
2009-07-17 12:19:21 +02:00
|
|
|
release=1
|
2011-01-31 09:19:20 +01:00
|
|
|
source=(http://tukaani.org/xz/$name-$version.tar.bz2)
|
2009-06-11 14:52:08 +02:00
|
|
|
|
|
|
|
build() {
|
2009-07-17 12:19:21 +02:00
|
|
|
cd $name-$version
|
2009-06-11 15:36:28 +02:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--mandir=/usr/man \
|
2011-01-08 22:00:57 +01:00
|
|
|
--disable-nls
|
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
|
|
|
}
|