2012-11-21 11:12:43 -06:00
|
|
|
# Description: Compression utility using the lzma algorithm, successor of lzma-utils
|
|
|
|
# URL: http://tukaani.org/xz/
|
2013-02-02 01:54:23 +11:00
|
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
name=xz-32
|
2013-07-03 20:09:55 +10:00
|
|
|
version=5.0.5
|
2012-11-21 11:12:43 -06:00
|
|
|
release=1
|
|
|
|
source=(http://tukaani.org/xz/xz-$version.tar.bz2)
|
|
|
|
|
|
|
|
build() {
|
|
|
|
cd xz-$version
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--libdir=/usr/lib32 \
|
|
|
|
--disable-nls
|
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
|
|
|
|
|
|
|
ln -s liblzma.so.$version $PKG/usr/lib32/liblzma.so.0
|
|
|
|
|
|
|
|
rm -r $PKG/usr/{bin,include,share}
|
|
|
|
}
|