diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/pdns-recursor/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/pdns-recursor/PKGBUILD')
-rw-r--r-- | community/pdns-recursor/PKGBUILD | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/community/pdns-recursor/PKGBUILD b/community/pdns-recursor/PKGBUILD new file mode 100644 index 000000000..40bc9c897 --- /dev/null +++ b/community/pdns-recursor/PKGBUILD @@ -0,0 +1,40 @@ +# $Id: PKGBUILD 93880 2013-07-11 16:32:02Z arodseth $ +# Maintainer: Alexander Rødseth <rodseth@gmail.com> +# Contributor: Jan de Groot <jgc@archlinux.org> +# Contributor: Jan Steffens <heftig@archlinux.org> + +pkgname=pdns-recursor +pkgver=3.5.2 +pkgrel=1 +pkgdesc='PowerDNS recursor' +url='https://www.powerdns.com/' +license=('GPL') +arch=('x86_64' 'i686') +depends=('gcc-libs' 'lua51') +makedepends=('boost') +backup=('etc/powerdns/recursor.conf') +source=("http://downloads.powerdns.com/releases/$pkgname-$pkgver.tar.bz2" + 'pdns-recursor.service') +sha256sums=('ffe3158ee5b3f62e927198fd44e839a01d3241a41a4e61afdca6709113c276bd' + '51688d9576736fdf210048098fa96c8710bfbd6a63eb4d69d20bac57b299b5f9') + +build() { + cd "$srcdir/$pkgname-$pkgver" + + make -j1 LUA=1 \ + LUA_CPPFLAGS_CONFIG="$(pkg-config --cflags lua5.1)" \ + LUA_LIBS_CONFIG="$(pkg-config --libs lua5.1)" +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + + make SBINDIR="/usr/bin" DESTDIR="$pkgdir" install + mv "$pkgdir/etc/powerdns/recursor.conf-dist" \ + "$pkgdir/etc/powerdns/recursor.conf" + rm -r "$pkgdir/etc/init.d" + install -Dm644 "$srcdir/pdns-recursor.service" \ + "$pkgdir/usr/lib/systemd/system/pdns-recursor.service" +} + +# vim:set ts=2 sw=2 et: |