void-packages/srcpkgs/zziplib/template
2020-04-17 16:14:33 +02:00

41 lines
1 KiB
Bash

# Template file for 'zziplib'
pkgname=zziplib
version=0.13.71
revision=1
build_style=cmake
hostmakedepends="pkg-config python3 tar zip gzip"
makedepends="zlib-devel"
short_desc="Lightweight library to extract data from zip files"
maintainer="Orphaned <orphan@voidlinux.org>"
license="LGPL-2.1-or-later, MPL-1.1"
homepage="https://github.com/gdraheim/zziplib"
changelog="https://raw.githubusercontent.com/gdraheim/zziplib/master/ChangeLog"
distfiles="https://github.com/gdraheim/zziplib/archive/v${version}.tar.gz"
checksum=2ee1e0fbbb78ec7cc46bde5b62857bc51f8d665dd265577cf93584344b8b9de2
if [ "$CROSS_BUILD" ]; then
configure_args+=" -DZZIPTEST=OFF"
fi
post_install() {
sed -i "s|\(-specs=.*hardened-ld\)||g" -i ${DESTDIR}/usr/lib/pkgconfig/*.pc
}
zziplib-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
vmove usr/share
}
}
zziplib-utils_package() {
short_desc+=" - utilities"
pkg_install() {
vmove usr/bin
}
}