1
0
forked from ports/compat-32

26 lines
507 B
Plaintext
Raw Permalink Normal View History

# Description: Compression utility using the lzma algorithm, successor of lzma-utils
2022-10-01 22:20:53 +02:00
# URL: https://tukaani.org/xz/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
name=xz-32
version=5.4.6
release=1
source=(https://crux.nu/files/distfiles/xz-5.4.6.tar.gz)
build() {
2014-09-20 12:57:52 +10:00
cd xz-$version
autoreconf -vfi
2014-09-20 12:57:52 +10:00
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
--enable-threads \
--enable-werror \
2014-09-20 12:57:52 +10:00
--disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{bin,include,share}
}