PKGBUILDs/community/unbound/PKGBUILD

100 lines
4.2 KiB
Bash
Raw Normal View History

2020-11-21 17:15:45 +00:00
# Maintainer: David Runge <dvzrv@archlinux.org>
2021-07-24 18:33:51 +00:00
# Maintainer: Bruno Pagani <archange@archlinux.org>
2022-10-21 12:50:26 +00:00
# Maintainer: T.J. Townsend <blakkheim@archlinux.org>
2020-11-21 17:15:45 +00:00
# Contributor: Gaetan Bisson <bisson@archlinux.org>
2015-12-06 17:37:32 +00:00
# Contributor: Hisato Tatekura <hisato_tatekura@excentrics.net>
# Contributor: Massimiliano Torromeo <massimiliano DOT torromeo AT google mail service>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - disable LTO (--disable-flto)
pkgname=unbound
2022-10-21 12:50:26 +00:00
pkgver=1.17.0
2022-11-22 13:43:31 +00:00
pkgrel=3
2020-11-21 17:15:45 +00:00
pkgdesc="Validating, recursive, and caching DNS resolver"
2021-07-24 18:33:51 +00:00
arch=(x86_64)
2020-11-21 17:15:45 +00:00
url="https://unbound.net/"
2021-07-24 18:33:51 +00:00
license=(BSD)
2021-12-12 00:44:02 +00:00
depends=(dnssec-anchors fstrm hiredis ldns libevent libnghttp2 libsodium openssl)
makedepends=(expat protobuf-c python swig systemd)
2021-02-11 15:01:49 +00:00
optdepends=(
'expat: for unbound-anchor'
'sh: for unbound-control-setup'
2021-12-12 00:44:02 +00:00
'python: for python-bindings'
2021-02-11 15:01:49 +00:00
)
2021-07-24 18:33:51 +00:00
provides=(libunbound.so)
2022-10-21 12:50:26 +00:00
backup=(etc/$pkgname/$pkgname.conf)
2021-12-12 00:44:02 +00:00
source=(
2022-09-24 15:07:28 +00:00
https://unbound.net/downloads/$pkgname-$pkgver.tar.gz{,.asc}
$pkgname-1.14.0-trust_anchor_file.patch
$pkgname-sysusers.conf
$pkgname-tmpfiles.conf
$pkgname-trusted-key.hook
2021-12-12 00:44:02 +00:00
)
2022-10-21 12:50:26 +00:00
sha512sums=('f6b9f279330fb19b5feca09524959940aad8c4e064528aa82b369c726d77e9e8e5ca23f366f6e9edcf2c061b96f482ed7a2c26ac70fc15ae5762b3d7e36a5284'
2018-06-11 18:05:49 +00:00
'SKIP'
2021-12-12 00:44:02 +00:00
'9590d3d459d96f99cbc7482fae0f5318dd22a034e45cff18079e4f3c9f9c3c1d7af90cdd5353fb469eac08c535555fd164097b496286b807b2117e8a3a6cd304'
2020-11-21 17:15:45 +00:00
'ef71d4e9b0eb0cc602d66bd0573d9424578fe33ef28a852c582d56f0fd34fdd63046c365ef7aed8b84a461b81254240af7ad3fd539da72f9587817d21bd6c585'
'6b1849ae9d7cf427f6fa6cd0590e8f8c3f06210d2d6795e543b0f325a9e866db0f5db2275a29fa90f688783c0dd16f19c8a49a9817d5f5444e13f8f2df3ff712'
'613826cdf5ab6e77f2805fa2aa65272508dcd11090add1961b3df6dfac3b67db016bc9f45fbcf0ef0de82b2d602c153d5263a488027a6cf13a72680b581b266d')
2022-10-21 12:50:26 +00:00
b2sums=('611c1b96ff84e6dd8f7a592135cc17f416cd810d0f35d27c8cedd56af069badd8dca112cc5927a1fe50ec3335c377b6bd6fc4e1a6d63a332a90d676e3c23dcef'
2020-11-21 17:15:45 +00:00
'SKIP'
2021-12-12 00:44:02 +00:00
'0978ab5c0474ed29de9c0904a46d114413e094dafeadaac4f10cdbc19e4152fcc064d7cdb8c331da7c2531075aa699326b84e21da1a8218a6f00a10f0e107b3d'
2020-11-21 17:15:45 +00:00
'292a3c2e5fde292a03b6c9b2ddabd5089f52e73b50a404c3d9f54c1a43184924b661a21eea61cc521c594c1005a3b40b630fa585a38195c61298f9b24b248b92'
'd3951006b43068be904c6b91a9e0563d56228225854e12b40abbdd4ba9b47338e97265837297a6de879acbc8051bb749163f9457683f5e12fc29ac2e7b687fd3'
'd28785390eb6c125bd26ca11f097fe8864b080482157deeb7c70e9bee47ff2844abaed574db59a7c152ed3ec0acba05cfee4c3751f7a9f553320b064578f86c7')
2021-07-24 18:33:51 +00:00
validpgpkeys=(EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D) # W.C.A. Wijngaards <wouter@nlnetlabs.nl>
2019-09-17 03:52:16 +00:00
prepare() {
2021-12-12 00:44:02 +00:00
# enable trusted-anchor-file and set it to an unbound specific location
2022-09-24 15:07:28 +00:00
patch -p1 -d $pkgname-$pkgver -i ../$pkgname-1.14.0-trust_anchor_file.patch
cd $pkgname-$pkgver
autoreconf -fiv
2019-09-17 03:52:16 +00:00
}
2015-12-06 17:37:32 +00:00
build() {
2022-09-24 15:07:28 +00:00
cd $pkgname-$pkgver
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--sbindir=/usr/bin \
--disable-rpath \
--enable-dnscrypt \
--enable-dnstap \
--enable-pie \
--enable-relro-now \
--enable-subnet \
--enable-systemd \
--enable-tfo-client \
--enable-tfo-server \
--enable-cachedb \
--with-libhiredis \
--with-conf-file=/etc/unbound/unbound.conf \
--with-pidfile=/run/unbound.pid \
--with-rootkey-file=/etc/trusted-key.key \
--with-libevent \
--with-libnghttp2 \
--with-pyunbound \
--disable-flto
# prevent excessive overlinking due to libtool
sed -i -e 's/ -shared / -Wl,-O1,--as-needed\0/g' libtool
2020-11-21 17:15:45 +00:00
make
}
2015-12-06 17:37:32 +00:00
2020-11-21 17:15:45 +00:00
check() {
2022-09-24 15:07:28 +00:00
make -k check -C $pkgname-$pkgver
2015-12-06 17:37:32 +00:00
}
package() {
2021-07-24 18:33:51 +00:00
depends+=(libprotobuf-c.so libsystemd.so)
2021-12-12 00:44:02 +00:00
2022-09-24 15:07:28 +00:00
make DESTDIR="$pkgdir" install -C $pkgname-$pkgver
install -vDm 644 $pkgname-$pkgver/contrib/$pkgname.service -t "$pkgdir/usr/lib/systemd/system/"
install -vDm 644 $pkgname-$pkgver/LICENSE -t "$pkgdir/usr/share/licenses/$pkgname/"
install -vDm 644 $pkgname-sysusers.conf "$pkgdir/usr/lib/sysusers.d/$pkgname.conf"
install -vDm 644 $pkgname-tmpfiles.conf "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
2020-11-21 17:15:45 +00:00
# libalpm hook to copy the dnssec-anchors provided key to /etc/unbound
2022-09-24 15:07:28 +00:00
install -vDm 644 unbound-trusted-key.hook -t "$pkgdir/usr/share/libalpm/hooks/"
2015-12-06 17:37:32 +00:00
}