42 lines
1.1 KiB
Bash
42 lines
1.1 KiB
Bash
# Template file for 'zziplib'
|
|
pkgname=zziplib
|
|
version=0.13.74
|
|
revision=2
|
|
build_style=cmake
|
|
configure_args="-DZZIP_LIBLATEST=ON"
|
|
hostmakedepends="pkg-config python3 tar zip"
|
|
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=319093aa98d39453f3ea2486a86d8a2fab2d5632f6633a2665318723a908eecf
|
|
|
|
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
|
|
}
|
|
}
|