core/xz/Pkgfile

18 lines
436 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
# URL: http://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
2015-10-02 11:02:11 +02:00
version=5.2.2
2009-07-17 12:19:21 +02:00
release=1
2011-01-31 09:19:20 +01:00
source=(http://tukaani.org/xz/$name-$version.tar.bz2)
2009-06-11 14:52:08 +02:00
build() {
2009-07-17 12:19:21 +02:00
cd $name-$version
./configure --prefix=/usr \
2011-01-08 22:00:57 +01:00
--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
}