2012-11-21 11:12:43 -06:00
|
|
|
# Description: Compression utility using the lzma algorithm, successor of lzma-utils
|
2020-06-17 19:38:34 -05: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
|
2020-03-24 19:57:22 +11:00
|
|
|
version=5.2.5
|
2012-11-21 11:12:43 -06:00
|
|
|
release=1
|
2018-05-07 20:42:35 +10:00
|
|
|
source=(https://tukaani.org/xz/xz-$version.tar.bz2)
|
2012-11-21 11:12:43 -06:00
|
|
|
|
|
|
|
build() {
|
2014-09-20 12:57:52 +10:00
|
|
|
cd xz-$version
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
2012-11-21 11:12:43 -06:00
|
|
|
--libdir=/usr/lib32 \
|
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}
|
|
|
|
}
|