mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-03-12 00:51:51 +01:00
40 lines
916 B
Plaintext
40 lines
916 B
Plaintext
# Contributor: Klemens Nanni <kl3@posteo.org>
|
|
# Maintainer: Klemens Nanni <kl3@posteo.org>
|
|
pkgname=plzip
|
|
pkgver=1.7
|
|
pkgrel=0
|
|
pkgdesc="Massively parallel lossless data compressor"
|
|
url="http://www.nongnu.org/lzip/plzip.html"
|
|
arch="all"
|
|
license="GPL-2.0-or-later"
|
|
depends=""
|
|
depends_dev=""
|
|
makedepends="lzlib"
|
|
install=""
|
|
subpackages="${pkgname}-doc"
|
|
source="https://download.savannah.gnu.org/releases/lzip/$pkgname/$pkgname-$pkgver.tar.gz"
|
|
|
|
builddir="$srcdir/$pkgname-$pkgver"
|
|
build() {
|
|
cd "$builddir"
|
|
./configure \
|
|
--build=$CBUILD \
|
|
--host=$CHOST \
|
|
--prefix=/usr \
|
|
--sysconfdir=/etc \
|
|
--mandir=/usr/share/man \
|
|
--localstatedir=/var
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make -C "$builddir" check
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="6c9817ee89fb01aa20a051970c0d737f0658cbe18b6d6bef44768a53daa695691f5f768e810ba4a477598b435ce097c101685ddd61a8a61022b4343e238eb68f plzip-1.7.tar.gz"
|