diff options
author | Celeste <20312-Celeste@users.gitlab.alpinelinux.org> | 2024-09-07 03:17:24 +0000 |
---|---|---|
committer | Celeste <20312-Celeste@users.gitlab.alpinelinux.org> | 2024-09-07 03:17:24 +0000 |
commit | de5f1f43ee02bd7b434dda0a7409505baf28fcd6 (patch) | |
tree | 51702710e11d1ac3b14ce21abb894a0c6063b63e | |
parent | 6e6e30eb98675d6c8634d4a7638f4c4da3fd9ff6 (diff) | |
download | aports-de5f1f43ee02bd7b434dda0a7409505baf28fcd6.zip |
testing/plzip: claim maintainership
-rw-r--r-- | testing/plzip/APKBUILD | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/testing/plzip/APKBUILD b/testing/plzip/APKBUILD index a7f6ed391ce..88cbd94afe0 100644 --- a/testing/plzip/APKBUILD +++ b/testing/plzip/APKBUILD @@ -1,10 +1,10 @@ # Contributor: Klemens Nanni <kl3@posteo.org> -# Maintainer: +# Maintainer: Celeste <cielesti@protonmail.com> pkgname=plzip pkgver=1.11 -pkgrel=0 +pkgrel=1 pkgdesc="Massively parallel lossless data compressor" -url="http://www.nongnu.org/lzip/plzip.html" +url="https://www.nongnu.org/lzip/plzip.html" arch="all" license="GPL-2.0-or-later" makedepends="lzlib-dev" @@ -13,8 +13,12 @@ source="https://download.savannah.gnu.org/releases/lzip/plzip/plzip-$pkgver.tar. build() { ./configure \ + --build=$CBUILD \ + --host=$CHOST \ --prefix=/usr \ - --mandir=/usr/share/man + --sysconfdir=/etc \ + --mandir=/usr/share/man \ + --localstatedir=/var make } |