core/xz/Pkgfile

23 lines
452 B
Plaintext

# Description: Compression utility using the lzma algorithm, successor of lzma-utils
# URL: https://tukaani.org/xz/
# Maintainer: CRUX System Team, core-ports at crux dot nu
name=xz
version=5.4.6
release=1
source=(https://crux.nu/files/distfiles/xz-5.4.6.tar.gz)
build() {
cd $name-$version
autoreconf -vfi
./configure --prefix=/usr \
--enable-threads \
--enable-werror \
--disable-doc \
--disable-nls
make
make DESTDIR=$PKG install
}