diff options
author | Klemens Nanni <kl3@posteo.org> | 2016-07-05 14:34:05 +0200 |
---|---|---|
committer | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2016-07-07 11:38:04 +0200 |
commit | 1dfec27b14f97a3ca883db556d46a23b33c48c86 (patch) | |
tree | 219869a714ef81352f448df5ea04220b611541b5 /testing/plzip | |
parent | f7df652f9b010a5388d3f9489a4c134d35459b42 (diff) | |
download | aports-1dfec27b14f97a3ca883db556d46a23b33c48c86.tar.bz2 aports-1dfec27b14f97a3ca883db556d46a23b33c48c86.tar.xz |
testing/plzip: new aport
Diffstat (limited to 'testing/plzip')
-rw-r--r-- | testing/plzip/APKBUILD | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/testing/plzip/APKBUILD b/testing/plzip/APKBUILD new file mode 100644 index 0000000000..38999c38ca --- /dev/null +++ b/testing/plzip/APKBUILD @@ -0,0 +1,30 @@ +# Contributor: Klemens Nanni <kl3@posteo.org> +# Maintainer: Klemens Nanni <kl3@posteo.org> +pkgname=plzip +pkgver=1.5 +pkgrel=0 +pkgdesc="Plzip is a massively parallel lossless data compressor" +url="http://www.nongnu.org/lzip/plzip.html" +arch="all" +license="GPL2+" +depends="" +depends_dev="" +makedepends="" +install="" +subpackages="${pkgname}-doc" +source="http://download.savannah.gnu.org/releases/lzip/${pkgname}/${pkgname}-${pkgver}.tar.gz" + +builddir="${srcdir}/${pkgname}-${pkgver}" +build() { + cd "${builddir}" + ./configure --prefix=/usr + make || return 1 +} + +package() { + cd "${builddir}" + make DESTDIR="${pkgdir}" install || return 1 +} +md5sums="504d46ba468d337ec6c42f3c583632ba plzip-1.5.tar.gz" +sha256sums="cd401683c2c57ecf170c99a873e41e9e5fee0e9680341646e31032e31489cc8a plzip-1.5.tar.gz" +sha512sums="af3f7b6cb249686286d90683c3040591e0bc362dc4c10c054836de179e52755539650963c06a21f76f3db418ed08606c754af73af1d5baf081f434ddcadd01c5 plzip-1.5.tar.gz" |