17 lines
433 B
Plaintext
17 lines
433 B
Plaintext
# Description: Compression utility using the lzma algorithm, successor of lzma-utils
|
|
# URL: http://tukaani.org/xz/
|
|
# Maintainer: Juergen Daubert, juergen dot daubert at t-online dot de
|
|
|
|
name=xz
|
|
version=4.999.8beta
|
|
release=1
|
|
source=(http://tukaani.org/xz/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
./configure --prefix=/usr --mandir=/usr/man
|
|
make
|
|
make DESTDIR=$PKG install
|
|
rm -r $PKG/usr/share
|
|
}
|