PKGBUILDs/extra/powerdns-recursor/PKGBUILD
2024-05-14 12:44:10 +00:00

65 lines
2.2 KiB
Bash

# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
# Maintainer: Remi Gacogne <rgacogne[at]archlinux[dot]org>
# Contributor: Alexander Rødseth <rodseth@gmail.com>
# Contributor: Jan de Groot <jgc@archlinux.org>
# Contributor: Jan Steffens <heftig@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - remove makedepend on pandoc
pkgname=powerdns-recursor
pkgver=5.0.5
pkgrel=1
pkgdesc='Resolving DNS server'
url='https://www.powerdns.com/'
arch=('x86_64')
license=('GPL-2.0-only')
depends=('gcc-libs' 'boost-libs' 'libcap' 'libcurl.so' 'libsodium' 'systemd-libs' 'luajit' 'openssl'
'libboost_context.so' 'fstrm' 'net-snmp')
makedepends=('boost' 'ragel' 'rust' 'systemd')
options=(!lto)
provides=('pdns-recursor')
conflicts=('pdns-recursor')
backup=('etc/powerdns/recursor.conf')
source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc}
sysusers.conf)
sha512sums=('52bed3516a8dfbe4be5e5ddd81920955c1c4c66d1996afc9f61d361e06ec11cc5aba7afe4c49f8f69b1554b6564cb619ee5572c066d6d6f2733a0f07bc6945c0'
'SKIP'
'63b3f0664d38fbbcb6b1c914cee050a27eca0a15550962973743580dd5d3ace2e68272ca2d856d53cc74001fe9246d61207ebbc74524c096736777ed08c88e72')
validpgpkeys=('FBAE0323821C7706A5CA151BDCF513FA7EED19F3' # Peter van Dijk <peter.van.dijk@powerdns.com>
'16E12866B7738C73976A57436FFC33439B0D04DF') # Winkels, Erik <erik.winkels@open-xchange.com>
prepare() {
cd pdns-recursor-${pkgver}
autoreconf -i
}
build() {
cd pdns-recursor-${pkgver}
LIBS=$LIBS ./configure \
--prefix=/usr \
--sbindir=/usr/bin \
--sysconfdir=/etc/powerdns \
--disable-silent-rules \
--enable-reproducible \
--enable-systemd \
--enable-dns-over-tls \
--with-libsodium \
--with-lua=luajit \
--with-net-snmp \
--enable-auto-var-init=zero \
--with-service-user=pdns-recursor \
--with-service-group=pdns-recursor \
--with-libcrypto=/usr # workaround for https://github.com/PowerDNS/pdns/issues/14084
make
}
package() {
cd pdns-recursor-${pkgver}
make DESTDIR="${pkgdir}" install
mv "${pkgdir}/etc/powerdns/recursor.conf"{-dist,}
install -Dm 644 "${srcdir}/sysusers.conf" "${pkgdir}/usr/lib/sysusers.d/powerdns-recursor.conf"
}
# vim: ts=2 sw=2 et: