unbound: update to 1.13.1

This commit is contained in:
Juergen Daubert 2021-02-16 13:28:48 +01:00
parent a1dc5c6bca
commit dfab805ee9
2 changed files with 25 additions and 24 deletions

View File

@ -1,8 +1,8 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/fbvt61PE0gek7PcFiUePK5K8YzYTMXCYumBHF501bWcODqLfwtu4oxhPFBGkMGYrtlG4H2oVZGtJwNhLlCA9gQ=
SHA256 (Pkgfile) = d93ea20a989b4ed5043ec92b741f69752493ca47e233d48fc756c5ed952cb625
RWSE3ohX2g5d/ZlVaJJ30HiiCS69KoZFHLawT6TO49Xpcg9koEnJo85efTo/lAShUN6ruUjd4BJtoUYOBeODvjJSAuDam4Hk+wU=
SHA256 (Pkgfile) = 1c904ffe6d56226d764ce0ade411bf46a22707f0be22537a4cc6d386a42d1aee
SHA256 (.footprint) = 55dae6262dda05e002b80b843c0e57553a93a9e770d86630d104c04e3efaced7
SHA256 (unbound-1.13.0.tar.gz) = a954043a95b0326ca4037e50dace1f3a207a0a19e9a4a22f4c6718fc623db2a1
SHA256 (unbound-1.13.1.tar.gz) = 8504d97b8fc5bd897345c95d116e0ee0ddf8c8ff99590ab2b4bd13278c9f50b8
SHA256 (unbound) = 54c94f1813c00c7faac51bde904b879b73d043e87c49cf8aff63de565368a095
SHA256 (README) = df6c339bdb1dcb173ec13cfdb37c28ea2d47a2700334aea3c503ef96f955f043
SHA256 (pre-install) = ec1d006e0ec4dca5b83fb0364ae2a591a9ffad7c41bac0c45f22f32a9d55f2c5

View File

@ -1,32 +1,33 @@
# Description: Validating, recursive, and caching DNS resolver
# URL: http://unbound.net/index.html
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: openssl expat
# URL: http://unbound.net/index.html
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: openssl expat
name=unbound
version=1.13.0
version=1.13.1
release=1
source=(https://unbound.net/downloads/$name-$version.tar.gz
unbound
README pre-install)
unbound
README pre-install)
build () {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--with-pidfile=/var/run/unbound.pid \
--with-chroot-dir=/etc/unbound \
--with-rootkey-file=/etc/unbound/anchor/root.key \
--disable-shared \
--disable-flto \
--with-username=unbound
cd $name-$version
make
make DESTDIR=$PKG install
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--with-pidfile=/var/run/unbound.pid \
--with-chroot-dir=/etc/unbound \
--with-rootkey-file=/etc/unbound/anchor/root.key \
--disable-shared \
--disable-flto \
--with-username=unbound
rm -r $PKG/usr/{lib,include,share/man/man3}
make
make DESTDIR=$PKG install
install -d -o unbound -g unbound $PKG/etc/unbound/anchor
install -D -m 755 $SRC/unbound $PKG/etc/rc.d/unbound
rm -r $PKG/usr/{lib,include,share/man/man3}
install -d -o unbound -g unbound $PKG/etc/unbound/anchor
install -D -m 755 $SRC/unbound $PKG/etc/rc.d/unbound
}