void-packages/srcpkgs/unbound/template
2017-08-22 12:47:03 +02:00

40 lines
1.2 KiB
Bash

# Template file for 'unbound'
pkgname=unbound
version=1.6.5
revision=1
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
--enable-dnscrypt --enable-event-api
--with-rootkey-file=/etc/dns/root.key --sbindir=/usr/bin"
conf_files="/etc/unbound/unbound.conf"
makedepends="expat-devel libevent-devel libressl-devel libsodium-devel"
depends="dnssec-anchors"
system_accounts="unbound"
short_desc="Validating, recursive, and caching DNS resolver"
maintainer="Leah Neukirchen <leah@vuxu.org>"
license="3-clause-BSD"
homepage="http://unbound.net/"
distfiles="http://unbound.net/downloads/${pkgname}-${version}.tar.gz"
checksum=e297aa1229015f25bf24e4923cb1dadf1f29b84f82a353205006421f82cc104e
post_install() {
vsconf doc/example.conf unbound.conf
vinstall ${FILESDIR}/unbound.conf 644 etc/unbound
vsv unbound
vlicense LICENSE
}
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
}
}