void-packages/srcpkgs/unbound/template
2018-03-18 15:46:54 +01:00

40 lines
1.3 KiB
Bash

# Template file for 'unbound'
pkgname=unbound
version=1.7.0
revision=2
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="BSD-3-Clause"
homepage="http://unbound.net/"
distfiles="http://unbound.net/downloads/${pkgname}-${version}.tar.gz"
checksum=94dd9071fb13d8ccd122a3ac67c4524a3324d0e771fc7a8a7c49af8abfb926a2
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 libressl-devel libevent-devel"
short_desc+=" - development files"
pkg_install() {
vmove usr/include
vmove usr/lib/*.a
vmove usr/lib/*.so
vmove usr/lib/pkgconfig
vmove usr/share/man/man3
}
}