void-packages/srcpkgs/ldns/template
Juan RP 1c5f4690e6 xbps-src: always require current srcpkgs version in build dependencies.
That means that version comparators are not supported anymore in
hostmakedepends and makedepends.

This will ensure that a pkg is always built with the same build dependencies
everywhere, if the srcpkgs tree is uptodate.
2015-03-27 10:59:58 +01:00

38 lines
1 KiB
Bash

# Template file for 'ldns'
pkgname=ldns
version=1.6.17
revision=4
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
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
}
}