void-packages/srcpkgs/unbound/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

39 lines
1.1 KiB
Bash

# Template file for 'unbound'
pkgname=unbound
version=1.5.3
revision=2
build_pie=yes
build_style=gnu-configure
configure_args="--with-libevent --with-conf-file=/etc/unbound/unbound.conf
--with-pidfile=/run/unbound.pid --with-ssl=${XBPS_CROSS_BASE}/usr
--with-libevent=${XBPS_CROSS_BASE}/usr --with-libexpat=${XBPS_CROSS_BASE}/usr
--with-rootkey-file=/etc/dns/root.key"
conf_files="/etc/unbound/unbound.conf"
makedepends="libressl-devel expat-devel libevent-devel"
depends="dnssec-anchors"
system_accounts="unbound"
short_desc="Validating, recursive, and caching DNS resolver"
maintainer="Christian Neukirchen <chneukirchen@gmail.com>"
license="BSD"
homepage="http://unbound.net/"
distfiles="http://unbound.net/downloads/${pkgname}-${version}.tar.gz"
checksum=76bdc875ed4d1d3f8e4cfe960e6df78ee5c6c7c18abac11331cf93a7ae129eca
post_install() {
vsconf doc/example.conf unbound.conf
vinstall ${FILESDIR}/unbound.conf 644 etc/unbound
vsv unbound
}
unbound-devel_package() {
depends="unbound>=$version $makedepends"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/*.a
vmove usr/lib/*.so
vmove usr/share/man/man3
}
}