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