mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-03 06:51:57 +01:00
30 lines
720 B
Plaintext
30 lines
720 B
Plaintext
# Contributor: Klemens Nanni <kl3@posteo.org>
|
|
# Maintainer: Klemens Nanni <kl3@posteo.org>
|
|
pkgname=lzlib
|
|
pkgver=1.12
|
|
pkgrel=0
|
|
pkgdesc="Library for the lzip compression file format"
|
|
url="http://www.nongnu.org/lzip/lzlib.html"
|
|
arch="all"
|
|
license="GPL-2.0-or-later"
|
|
subpackages="$pkgname-doc $pkgname-dev"
|
|
source="https://download.savannah.gnu.org/releases/lzip/lzlib/lzlib-$pkgver.tar.gz"
|
|
|
|
build() {
|
|
./configure \
|
|
--prefix=/usr \
|
|
--mandir=/usr/share/man \
|
|
--disable-static
|
|
make
|
|
}
|
|
|
|
check() {
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|
|
sha512sums="b5379422eed4016b0ee124e39902dd22c314ca5cc5f72c1af5ec2ef6a68e1e85c523ab18e30048d453689f73f780d0144dcabaf881337e1c8101e2fe17ee21f8 lzlib-1.12.tar.gz"
|