diff options
Diffstat (limited to 'extra/pdns-recursor/PKGBUILD')
-rw-r--r-- | extra/pdns-recursor/PKGBUILD | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/extra/pdns-recursor/PKGBUILD b/extra/pdns-recursor/PKGBUILD new file mode 100644 index 000000000..c344995ac --- /dev/null +++ b/extra/pdns-recursor/PKGBUILD @@ -0,0 +1,32 @@ +# $Id: PKGBUILD 109116 2011-02-06 10:26:46Z andyrtr $ +# Maintainer: Jan de Groot <jgc@archlinux.org> + +pkgname=pdns-recursor +pkgver=3.3 +pkgrel=1 +pkgdesc="PowerDNS recursor" +url="http://www.powerdns.com" +license=('GPL') +arch=('i686' 'x86_64') +depends=('gcc-libs>=4.5.2' 'lua') +makedepends=('boost') +#options=(!makeflags) +backup=('etc/powerdns/recursor.conf') +source=(http://downloads.powerdns.com/releases/${pkgname}-${pkgver}.tar.bz2 + pdns-recursor.rc) +md5sums=('87daeeebb6f7af9e07814ff6c43300dd' + '5b3aa3c8ed2edf55821af16cfb7ef252') + +build() { + cd "${srcdir}/${pkgname}-${pkgver}" + LUA=1 LUA_CPPFLAGS_CONFIG= LUA_LIBS_CONFIG=-llua make +} + +package() { + cd "${srcdir}/${pkgname}-${pkgver}" + make DESTDIR="${pkgdir}" install + install -d -m755 "${pkgdir}/etc/rc.d" + mv "${pkgdir}/etc/powerdns/recursor.conf-dist" "${pkgdir}/etc/powerdns/recursor.conf" + install -m755 "${srcdir}/pdns-recursor.rc" "${pkgdir}/etc/rc.d/pdns-recursor" + rm -rf "${pkgdir}/etc/init.d" +} |