22 lines
493 B
Plaintext
22 lines
493 B
Plaintext
|
# Description: Compression utility using the lzma algorithm, successor of lzma-utils
|
||
|
# URL: http://tukaani.org/xz/
|
||
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
||
|
|
||
|
name=xz-32
|
||
|
version=5.0.4
|
||
|
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}
|
||
|
}
|