blob: 94a6e8bf5682f189201443cf51e59a3e6dae7c9e (
plain)
1 # Description: Compression utility using the lzma algorithm, successor of lzma-utils
2 # URL: https://tukaani.org/xz/
3 # Maintainer: CRUX compat-32 Team, compat-32-ports at crux dot nu
4
5 name=xz-32
6 version=5.4.0
7 release=1
8 source=(https://tukaani.org/xz/xz-$version.tar.xz)
9
10 build() {
11 cd xz-$version
12
13 ./configure \
14 --prefix=/usr \
15 --libdir=/usr/lib32 \
16 --disable-nls
17
18 make
19 make DESTDIR=$PKG install
20
21 rm -r $PKG/usr/{bin,include,share}
22 }
|