summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemi Gacogne2019-06-18 16:57:48 +0200
committerRemi Gacogne2019-06-18 16:57:48 +0200
commitd3c49a3e8ae739e64e0eec86cab934d43c85bbf8 (patch)
treed8435404c63b4ac293102d070a26c977d37bbcb9
parent02afe8b41eecbcb6ff345b57da808c6767ae9fa8 (diff)
downloadaur-d3c49a3e8ae739e64e0eec86cab934d43c85bbf8.tar.gz
powerdns-recursor-git: Update to latest git options, enable dnstap
- Need fstrm for dnstap - Switch from Lua to LuaJIT - Configure options have been renamed (enable -> with)
-rw-r--r--.SRCINFO8
-rw-r--r--PKGBUILD11
2 files changed, 10 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1c765a125513..6fbe3ff4be81 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,6 @@
-# Generated by mksrcinfo v8
-# Sun Dec 3 22:05:16 UTC 2017
pkgbase = powerdns-recursor-git
pkgdesc = Resolving DNS server
- pkgver = r13393.4461bb7c3
+ pkgver = r17040.d26856a32
pkgrel = 1
url = https://www.powerdns.com/
arch = x86_64
@@ -14,9 +12,11 @@ pkgbase = powerdns-recursor-git
makedepends = ragel
makedepends = systemd
depends = boost-libs
+ depends = fstrm
depends = libsodium
depends = libsystemd
- depends = lua
+ depends = luajit
+ depends = net-snmp
depends = openssl
depends = protobuf
provides = powerdns-recursor
diff --git a/PKGBUILD b/PKGBUILD
index 0f054ddebe21..7af03cf9fc3d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,6 +1,6 @@
# Maintainer: Remi Gacogne <rgacogne-arch at archlinux dot org>
pkgname=powerdns-recursor-git
-pkgver=r13393.4461bb7c3
+pkgver=r17040.d26856a32
pkgrel=1
pkgdesc='Resolving DNS server'
arch=('x86_64')
@@ -9,7 +9,7 @@ license=('GPL2')
source=("${pkgname}::git+https://github.com/PowerDNS/pdns")
sha512sums=('SKIP')
makedepends=('boost' 'git' 'pandoc' 'python-virtualenv' 'ragel' 'systemd')
-depends=('boost-libs' 'libsodium' 'libsystemd' 'lua' 'openssl' 'protobuf' )
+depends=('boost-libs' 'fstrm' 'libsodium' 'libsystemd' 'luajit' 'net-snmp' 'openssl' 'protobuf' )
provides=('powerdns-recursor')
conflicts=('powerdns-recursor')
backup=('etc/powerdns/recursor.conf')
@@ -21,7 +21,7 @@ pkgver() {
build() {
cd "${pkgname}/pdns/recursordist"
- ./bootstrap
+ autoreconf -i
./configure \
--prefix=/usr \
--sbindir=/usr/bin \
@@ -29,8 +29,9 @@ build() {
--disable-silent-rules \
--enable-reproducible \
--enable-systemd \
- --enable-protobuf \
- --enable-libsodium
+ --with-protobuf \
+ --with-lua=luajit \
+ --with-libsodium
make
}