mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-04-05 09:27:19 +02:00
36 lines
854 B
Text
36 lines
854 B
Text
# Contributor: Klemens Nanni <kl3@posteo.org>
|
|
# Maintainer: Celeste <cielesti@protonmail.com>
|
|
maintainer="Celeste <cielesti@protonmail.com>"
|
|
pkgname=plzip
|
|
pkgver=1.12
|
|
pkgrel=0
|
|
pkgdesc="Massively parallel lossless data compressor"
|
|
url="https://www.nongnu.org/lzip/plzip.html"
|
|
arch="all"
|
|
license="GPL-2.0-or-later"
|
|
makedepends="lzlib-dev"
|
|
subpackages="$pkgname-doc"
|
|
source="https://download-mirror.savannah.gnu.org/releases/lzip/plzip/plzip-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="
|
|
b6fa75e30aba33f98b91683f4dbd2ec274b2c2b881bc31fc1841614d69aa1e5ca70dacf664efeefb3378deecc715a93000a27dc29e0103d7ce205168e81c27ae plzip-1.12.tar.gz
|
|
"
|