commit 2ab7b5024e933304d22e96e89f5f3c571e886782 Author: Fredrik Rinnestam <fredrik@crux.nu> Date: Fri Oct 27 19:44:30 2017 +0200 lzip: initial release. 1.19 diff --git a/lzip/.footprint b/lzip/.footprint new file mode 100644 index 000000000..fd9e3b86b --- /dev/null +++ b/lzip/.footprint @@ -0,0 +1,7 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/lzip +drwxr-xr-x root/root usr/share/ +drwxr-xr-x root/root usr/share/man/ +drwxr-xr-x root/root usr/share/man/man1/ +-rw-r--r-- root/root usr/share/man/man1/lzip.1.gz diff --git a/lzip/.md5sum b/lzip/.md5sum new file mode 100644 index 000000000..64a132c53 --- /dev/null +++ b/lzip/.md5sum @@ -0,0 +1 @@ +4dd8790d7528440d034fc713a8680bd3 lzip-1.19.tar.gz diff --git a/lzip/.signature b/lzip/.signature new file mode 100644 index 000000000..1fca7f19c --- /dev/null +++ b/lzip/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/opt.pub +RWSE3ohX2g5d/aK4x1kB8IvFfZ7Otc4Vj98Ip1SI0ZARpS7sS6ONqcdSF8RALEwR7RCprI+4hFPDha6dZ5eZfRqEAauuE9OBIQI= +SHA256 (Pkgfile) = 108f9e7a778e3492132a78abbe229232bc5a57408791ea633f1f3ceac17b3703 +SHA256 (.footprint) = f01d2156c01caf95db3af4d0e999ba77dcb4bb71d7ec6da80a802f02723291e8 +SHA256 (lzip-1.19.tar.gz) = ffadc4f56be1bc0d3ae155ec4527bd003133bdc703a753b2cc683f610e646ba9 diff --git a/lzip/Pkgfile b/lzip/Pkgfile new file mode 100644 index 000000000..bc861bb2b --- /dev/null +++ b/lzip/Pkgfile @@ -0,0 +1,19 @@ +# Description: lzip data compressor +# URL: http://lzip.nongnu.org/lzip.html +# Maintainer: Fredrik Rinnestam, fredrik at crux dot nu +# Depends on: + +name=lzip +version=1.19 +release=1 +source=(http://download.savannah.gnu.org/releases/lzip/lzip-$version.tar.gz) + +build() { + cd $name-$version + ./configure --prefix=/usr + + make + make DESTDIR=$PKG install + + rm -r $PKG/usr/share/info +}