void-packages/srcpkgs/yaz/template
Nathan Owens ece1527f17 yaz: update to 5.27.2
Signed-off-by: Nathan Owens <ndowens04@gmail.com>
2019-11-26 20:40:02 +01:00

38 lines
1.1 KiB
Bash

# Template file for 'yaz'
pkgname=yaz
version=5.27.2
revision=1
build_style=gnu-configure
configure_args="--enable-shared --with-memcached --with-xml2 --with-xslt
--with-icu --with-gnutls"
hostmakedepends="bison pkg-config"
makedepends="gnutls-devel libxslt-devel libxml2-devel libmemcached-devel icu-devel"
short_desc="Toolkit supporting development of Z39.50/SRW/SRU clients and servers"
maintainer="Orphaned <orphan@voidlinux.org>"
license="BSD-3-Clause"
homepage="https://www.indexdata.com/resources/software/yaz/"
distfiles="http://ftp.indexdata.dk/pub/yaz/yaz-${version}.tar.gz"
checksum=09fdebc78ef169194f3d275ede5ef39087484c1395bf518484051bba81cb154e
case "$XBPS_TARGET_MACHINE" in
*-musl) makedepends+=" libexecinfo-devel"
LDFLAGS+=" -lexecinfo" ;;
esac
post_install() {
vlicense LICENSE
}
yaz-devel_package() {
depends="${sourcepkg}>=${version}_${revision}"
short_desc+=" - development files"
pkg_install() {
vmove usr/bin/yaz-config
vmove usr/share/man/man1/yaz-config.1
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
vmove usr/share/aclocal
}
}