forked from ports/compat-32
23 lines
443 B
Plaintext
23 lines
443 B
Plaintext
# Description: Compression utility using the lzma algorithm, successor of lzma-utils
|
|
# URL: https://tukaani.org/xz/
|
|
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
|
|
|
|
name=xz-32
|
|
version=5.4.4
|
|
release=1
|
|
source=(https://tukaani.org/xz/xz-$version.tar.xz)
|
|
|
|
build() {
|
|
cd xz-$version
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--libdir=/usr/lib32 \
|
|
--disable-nls
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/{bin,include,share}
|
|
}
|