mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
69 lines
2.5 KiB
Bash
69 lines
2.5 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.1.1
|
|
pkgrel=2
|
|
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
|
|
powerdns-5_1_1-2_fix-build-with-boost-1_86_0.patch)
|
|
sha512sums=('59129312e79bb48ce5af4de0c90f36765084708fd7b728655b07ca0cf68ba618a4bf517a9e695caaecc57e5edef4f6fa373719aa0b3e82e25d17a077883784d0'
|
|
'SKIP'
|
|
'63b3f0664d38fbbcb6b1c914cee050a27eca0a15550962973743580dd5d3ace2e68272ca2d856d53cc74001fe9246d61207ebbc74524c096736777ed08c88e72'
|
|
'6714f61fb768393aa5123aa84be624ea6ab41a6aca6e38b41caebb8f2d935356323cb30bcdd56b21994ac1d4b399f3160cf61651817329702f4dcf387e81ae15')
|
|
validpgpkeys=('FBAE0323821C7706A5CA151BDCF513FA7EED19F3' # Peter van Dijk <peter.van.dijk@powerdns.com>
|
|
'16E12866B7738C73976A57436FFC33439B0D04DF') # Winkels, Erik <erik.winkels@open-xchange.com>
|
|
|
|
prepare() {
|
|
cd pdns-recursor-${pkgver}
|
|
|
|
patch -Np2 < ../powerdns-5_1_1-2_fix-build-with-boost-1_86_0.patch
|
|
|
|
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.yml-dist" "${pkgdir}/etc/powerdns/recursor.conf"
|
|
install -Dm 644 "${srcdir}/sysusers.conf" "${pkgdir}/usr/lib/sysusers.d/powerdns-recursor.conf"
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et:
|