core/xz/Pkgfile

17 lines
419 B
Plaintext
Raw Normal View History

2009-06-11 14:52:08 +02:00
# Description: Compression utility using the lzma algorithm, successor of lzma-utils
2020-06-04 16:56:32 +02:00
# URL: https://tukaani.org/xz/
2011-01-08 19:14:43 +01:00
# Maintainer: CRUX System Team, core-ports at crux dot nu
2009-06-11 14:52:08 +02:00
name=xz
2020-03-19 10:59:15 +01:00
version=5.2.5
2009-07-17 12:19:21 +02:00
release=1
2020-06-04 16:56:32 +02:00
source=(https://tukaani.org/xz/$name-$version.tar.xz)
2009-06-11 14:52:08 +02:00
build() {
2009-07-17 12:19:21 +02:00
cd $name-$version
2016-12-31 17:07:41 +01:00
./configure --prefix=/usr --disable-nls
2009-06-11 14:52:08 +02:00
make
make DESTDIR=$PKG install
2015-07-25 20:40:41 +02:00
rm -r $PKG/usr/share/doc/
2009-06-11 14:52:08 +02:00
}