30 lines
763 B
Bash
30 lines
763 B
Bash
# Template file for 'lzlib'
|
|
pkgname=lzlib
|
|
version=1.14
|
|
revision=1
|
|
build_style=configure
|
|
configure_args="--enable-shared --disable-static"
|
|
short_desc="Compression library for the lzip file format"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://www.nongnu.org/lzip/lzlib"
|
|
distfiles="${NONGNU_SITE}/lzip/lzlib/lzlib-${version}.tar.gz"
|
|
checksum=5acac8714ed4f306020bae660dddce706e5f8a795863679037da9fe6bf4dcf6f
|
|
|
|
do_configure() {
|
|
./configure --prefix=/usr $configure_args CC="$CC" CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS"
|
|
}
|
|
|
|
post_install() {
|
|
vlicense COPYING
|
|
}
|
|
|
|
lzlib-devel_package() {
|
|
short_desc+=" - development files"
|
|
depends="${sourcepkg}>=${version}_${revision}"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/*.so
|
|
}
|
|
}
|