# Maintainer: Erich Eckner # Contributor: Remi Gacogne pkgname=dnsdist pkgver=1.5.0 _pkgver=${pkgver#*_} _pkgver=${_pkgver//_/-} pkgrel=3 pkgdesc='Highly DNS-, DoS- and abuse-aware loadbalancer' arch=('x86_64') url='https://dnsdist.org/' license=('GPL2') source=(https://downloads.powerdns.com/releases/${pkgname}-${_pkgver}.tar.bz2{,.asc} sysusers.conf) sha512sums=('df6f8caae001f152f0d264176c570778842979484d16e4199afe0e2591006392444245dd8ce23287cdcf9613e2c40a9e3564f5236e5f5a6fd67b89d6ea0d9ed4' 'SKIP' 'd55ccd612cbe08b353815027d30a3b0f0ec7bf6b0d74a0a634939be53ce6e6b41d23e54c2328946f00738c03e9f306ce4f2dabe5e4b11d9fb28d0abf49917893') validpgpkeys=('D6300CABCBF469BBE392E503A208ED4F8AF58446') # Remi Gacogne makedepends=('boost' 'systemd') _pinned_dependencies=( 'fstrm=0.6.0' 'gcc-libs=10.1.0' 'glibc>=2.31' 'gnutls=3.6.14' 'libcap.so=2' 'libedit=20191231_3.1' 'libprotobuf.so=23' 'libsodium=1.0.18' 'libsystemd.so=0' 'lmdb=0.9.26' 'luajit=2.0.5' 'net-snmp=5.8' 'openssl=1.1.1.g' 're2=1:20200801' 'tinycdb=0.78' ) depends=('h2o' "${_pinned_dependencies[@]}") build() { cd "${pkgname}-${_pkgver}" ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --localstatedir=/var \ --with-ebpf \ --with-protobuf \ --with-gnutls \ --with-libsodium \ --with-libssl \ --with-re2 \ --enable-dnstap \ --enable-dns-over-tls \ --enable-dns-over-https \ --enable-dnscrypt \ --enable-systemd make sed -i 's,CapabilityBoundingSet=CAP_NET_BIND_SERVICE CAP_SETGID CAP_SETUID,CapabilityBoundingSet=CAP_NET_BIND_SERVICE\nAmbientCapabilities=CAP_NET_BIND_SERVICE\nUser=dnsdist\nGroup=dnsdist,' dnsdist.service } package() { cd "${pkgname}-${_pkgver}" make DESTDIR="${pkgdir}" install cd "${srcdir}" install -D -m644 sysusers.conf "${pkgdir}/usr/lib/sysusers.d/${pkgname}.conf" }