lzlib: initial release. 1.9

This commit is contained in:
Fredrik Rinnestam 2017-10-27 19:45:09 +02:00
parent 2ab7b5024e
commit d2da7bc3a0
4 changed files with 31 additions and 0 deletions

6
lzlib/.footprint Normal file
View File

@ -0,0 +1,6 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/lzlib.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/liblz.a
drwxr-xr-x root/root usr/share/

1
lzlib/.md5sum Normal file
View File

@ -0,0 +1 @@
eaf06deab55080257b322963d2694491 lzlib-1.9.tar.gz

5
lzlib/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/R+Uid3o2Lre0GUGvLs4F8SYdgz1xlKEqjqhA26BseaX0gnZi8TdD/nohcnvJbX/YVnAot9Z9RMTpENjeoEf1Q4=
SHA256 (Pkgfile) = 3de1fb44b7b109469c2c9f6eae2b713aa5a2eff5db2a97382058d956b6f99a64
SHA256 (.footprint) = 719c4e9b014844782ecbec87d62101a8710a2bc057cfc9f666d9b26bdee6df2d
SHA256 (lzlib-1.9.tar.gz) = 2472f8d93830d0952b0c75f67e372d38c8f7c174dde2252369d5b20c87d3ba8e

19
lzlib/Pkgfile Normal file
View File

@ -0,0 +1,19 @@
# Description: Data compression library
# URL: http://lzip.nongnu.org/lzlib.html
# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu
# Depends on:
name=lzlib
version=1.9
release=1
source=(http://download.savannah.gnu.org/releases/lzip/lzlib/lzlib-$version.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr
make
make DESTDIR=$PKG install
rm -r $PKG/usr/share/info
}