core/xz/Pkgfile

21 lines
395 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.5
release=1
source=(https://tukaani.org/xz/$name-$version.tar.xz)
build() {
cd $name-$version
./configure \
--prefix=/usr \
--disable-nls \
--disable-doc
make
make DESTDIR=$PKG install
}