mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
66 lines
2.5 KiB
Bash
66 lines
2.5 KiB
Bash
# Maintainer: Levente Polyak <anthraxx[at]archlinux[dot]org>
|
|
# Contributor: Alexander Rødseth <rodseth@gmail.com>
|
|
# Contributor: Jan de Groot <jgc@archlinux.org>
|
|
# Contributor: Jan Steffens <heftig@archlinux.org>
|
|
# Contributor: Remi Gacogne <rgacogne[at]archlinux[dot]org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - explicitly link v5/v6 with libatomic
|
|
# - remove makedepend on pandoc
|
|
|
|
pkgname=powerdns-recursor
|
|
pkgver=4.3.5
|
|
pkgrel=3
|
|
pkgdesc='Resolving DNS server'
|
|
url='https://www.powerdns.com/'
|
|
arch=('x86_64')
|
|
license=('GPL2')
|
|
depends=('gcc-libs' 'boost-libs' 'libsodium' 'systemd-libs' 'luajit' 'openssl' 'protobuf'
|
|
'libboost_context.so' 'fstrm' 'net-snmp' 'libprotobuf.so')
|
|
makedepends=('boost' 'inetutils' 'ragel' 'systemd')
|
|
provides=('pdns-recursor')
|
|
conflicts=('pdns-recursor')
|
|
backup=('etc/powerdns/recursor.conf')
|
|
source=(https://downloads.powerdns.com/releases/pdns-recursor-${pkgver}.tar.bz2{,.asc}
|
|
boost-1.73.patch
|
|
sysusers.conf)
|
|
sha512sums=('2d39e6016000951c0beca38b26c41664b57c059dee762d7499f34e599ed6c2653af73edb31ba5a8d35f749534f24c0d85b6aedf4c35dc8a05777ffebd1b25851'
|
|
'SKIP'
|
|
'5000bcb3e58c559d4e59105cedc7befb037bca3ef62730718ee6113c940fdb462d0ff7b47b8881d30139d7dfd1e5832a33dbe7f57b48e385f5359406486de7fe'
|
|
'63b3f0664d38fbbcb6b1c914cee050a27eca0a15550962973743580dd5d3ace2e68272ca2d856d53cc74001fe9246d61207ebbc74524c096736777ed08c88e72')
|
|
validpgpkeys=('B76CD4671C0968BAA87DE61C5E50715BF2FFE1A7' # Pieter Lexis <pieter.lexis@powerdns.com>
|
|
'FBAE0323821C7706A5CA151BDCF513FA7EED19F3' # Peter van Dijk <peter.van.dijk@powerdns.com>
|
|
'16E12866B7738C73976A57436FFC33439B0D04DF') # Winkels, Erik <erik.winkels@open-xchange.com>
|
|
|
|
prepare() {
|
|
cd pdns-recursor-${pkgver}
|
|
patch -Np1 -i ../boost-1.73.patch
|
|
autoreconf -i
|
|
}
|
|
|
|
build() {
|
|
cd pdns-recursor-${pkgver}
|
|
[[ $CARCH == arm || $CARCH == armv6h ]] && LIBS="-latomic"
|
|
LIBS=$LIBS ./configure \
|
|
--prefix=/usr \
|
|
--sbindir=/usr/bin \
|
|
--sysconfdir=/etc/powerdns \
|
|
--disable-silent-rules \
|
|
--enable-reproducible \
|
|
--enable-systemd \
|
|
--with-protobuf \
|
|
--with-libsodium \
|
|
--with-lua=luajit \
|
|
--with-service-user=pdns-recursor \
|
|
--with-service-group=pdns-recursor
|
|
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:
|