forked from ports/contrib
24 lines
525 B
Plaintext
24 lines
525 B
Plaintext
|
# Description: High quality compression program, faster decompression and 15% more compression than bzip2.
|
||
|
# URL: http://tukaani.org/lzma/
|
||
|
# Packager: Danny Rawlins, romster at shortcircuit dot net dot au
|
||
|
# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au
|
||
|
# Depends on:
|
||
|
|
||
|
name=lzma
|
||
|
version=4.32.3
|
||
|
release=1
|
||
|
source=(http://tukaani.org/lzma/lzma-$version.tar.gz)
|
||
|
|
||
|
build() {
|
||
|
cd lzma-$version
|
||
|
|
||
|
./configure \
|
||
|
--prefix=/usr \
|
||
|
--mandir=$PKG/usr/man \
|
||
|
--disable-static
|
||
|
|
||
|
make
|
||
|
make prefix=$PKG/usr install
|
||
|
}
|
||
|
|