compat-32/xz-32/Pkgfile

23 lines
451 B
Plaintext
Raw Normal View History

# Description: Compression utility using the lzma algorithm, successor of lzma-utils
# URL: http://tukaani.org/xz/
# Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
name=xz-32
2020-03-24 09:57:22 +01:00
version=5.2.5
release=1
2018-05-07 12:42:35 +02:00
source=(https://tukaani.org/xz/xz-$version.tar.bz2)
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}
}