void-packages/srcpkgs/ldns/template
2016-10-06 03:47:47 -04:00

42 lines
1.1 KiB
Bash

# Template file for 'ldns'
pkgname=ldns
version=1.6.17
revision=10
build_style=gnu-configure
configure_args="--with-drill --with-examples
--with-trust-anchor=/etc/dns/root.key
--with-ssl=${XBPS_CROSS_BASE}/usr"
hostmakedepends="perl"
makedepends="libpcap-devel libressl-devel dnssec-anchors"
short_desc="Modern DNS/DNSSEC library -- utils"
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
license="BSD"
homepage="http://www.nlnetlabs.nl/projects/ldns/"
distfiles="http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${version}.tar.gz"
checksum=8b88e059452118e8949a2752a55ce59bc71fa5bc414103e17f5b6b06f9bcc8cd
post_extract() {
sed -i 's/defined(@\$also)/@$also/' doc/doxyparse.pl
}
libldns_package() {
depends="dnssec-anchors"
short_desc="Modern DNS/DNSSEC library"
pkg_install() {
vmove "usr/lib/*.so.*"
}
}
libldns-devel_package() {
depends="libldns>=${version}_${revision}"
short_desc="Modern DNS/DNSSEC library -- development files"
pkg_install() {
vmove usr/bin/ldns-config
vmove usr/include
vmove "usr/lib/*.a"
vmove "usr/lib/*.so"
vmove usr/share/man/man1/ldns-config.1
vmove usr/share/man/man3
}
}