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
|
2018-05-04 10:56:02 +02:00
|
|
|
version=5.2.4
|
2009-07-17 12:19:21 +02:00
|
|
|
release=1
|
2018-05-04 10:56:02 +02:00
|
|
|
source=(http://tukaani.org/xz/$name-$version.tar.xz)
|
2009-06-11 14:52:08 +02:00
|
|
|
|
|
|
|
build() {
|
2009-07-17 12:19:21 +02:00
|
|
|
cd $name-$version
|
2016-12-31 17:07:41 +01:00
|
|
|
./configure --prefix=/usr --disable-nls
|
2009-06-11 14:52:08 +02:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2015-07-25 20:40:41 +02:00
|
|
|
rm -r $PKG/usr/share/doc/
|
2009-06-11 14:52:08 +02:00
|
|
|
}
|