blob: 31ca209928236651cfff0dd76be7d2e7b38654d1 (
plain)
1 # Description: very small data compression library
2 # URL: http://software.schmorp.de/pkg/liblzf.html
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4
5 name=liblzf
6 version=3.6
7 release=1
8 source=(http://dist.schmorp.de/$name/$name-$version.tar.gz
9 liblzf-3.6-autoconf-20140314.patch)
10
11 build() {
12 cd $name-$version
13 patch -Np1 -i $SRC/liblzf-3.6-autoconf-20140314.patch
14 chmod +x bootstrap.sh
15 ./bootstrap.sh
16 ./configure --prefix=/usr \
17 --disable-static
18 make
19 make DESTDIR=$PKG install
20 }
|