compat-32/xz-32/Pkgfile

23 lines
443 B
Plaintext
Raw 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
2022-12-09 22:59:36 +01:00
version=5.2.9
release=1
2022-10-01 22:20:53 +02:00
source=(https://tukaani.org/xz/xz-$version.tar.xz)
build() {
2014-09-20 04:57:52 +02:00
cd xz-$version
./configure \
--prefix=/usr \
--libdir=/usr/lib32 \
2014-09-20 04:57:52 +02:00
--disable-nls
make
make DESTDIR=$PKG install
rm -r $PKG/usr/{bin,include,share}
}