2009-06-11 14:52:08 +02:00
|
|
|
# Description: Compression utility using the lzma algorithm, successor of lzma-utils
|
2021-12-13 11:45:34 +01:00
|
|
|
# URL: https://tukaani.org/xz/
|
|
|
|
# Maintainer: CRUX System Team, core-ports at crux dot nu
|
2009-06-11 14:52:08 +02:00
|
|
|
|
|
|
|
name=xz
|
2024-03-30 18:42:37 +01:00
|
|
|
version=5.4.6
|
2009-07-17 12:19:21 +02:00
|
|
|
release=1
|
2024-03-30 18:42:37 +01:00
|
|
|
source=(https://crux.nu/files/distfiles/xz-5.4.6.tar.gz)
|
2009-06-11 14:52:08 +02:00
|
|
|
|
|
|
|
build() {
|
2021-12-13 11:45:34 +01:00
|
|
|
cd $name-$version
|
2023-11-01 17:04:34 +01:00
|
|
|
|
2024-03-30 18:42:37 +01:00
|
|
|
autoreconf -vfi
|
|
|
|
./configure --prefix=/usr \
|
|
|
|
--enable-threads \
|
|
|
|
--enable-werror \
|
|
|
|
--disable-doc \
|
|
|
|
--disable-nls
|
2023-11-01 17:04:34 +01:00
|
|
|
|
2021-12-13 11:45:34 +01:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2009-06-11 14:52:08 +02:00
|
|
|
}
|