diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-28 03:27:16 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2014-01-28 03:27:16 +0000 |
commit | 462391357aa5e749dc9908c15f3baa0b4416f3d8 (patch) | |
tree | 11d4d3f054aae9ffd869adc634054f64a16d83b8 /community/pdns-recursor/PKGBUILD | |
parent | 748e32a3a886569b58a27003e85b76be5746153d (diff) |
Tue Jan 28 03:22:21 UTC 2014
Diffstat (limited to 'community/pdns-recursor/PKGBUILD')
-rw-r--r-- | community/pdns-recursor/PKGBUILD | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/community/pdns-recursor/PKGBUILD b/community/pdns-recursor/PKGBUILD deleted file mode 100644 index b226c742f..000000000 --- a/community/pdns-recursor/PKGBUILD +++ /dev/null @@ -1,40 +0,0 @@ -# $Id: PKGBUILD 100036 2013-10-31 11:20:57Z 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.3 -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=('192c0b47a1cfcdccaa88d70fd33766a4c381f4223f966416f15e169df5d58eaa' - '51688d9576736fdf210048098fa96c8710bfbd6a63eb4d69d20bac57b299b5f9') - -build() { - cd "$pkgname-$pkgver" - - make -j1 LUA=1 \ - LUA_CPPFLAGS_CONFIG="$(pkg-config --cflags lua5.1)" \ - LUA_LIBS_CONFIG="$(pkg-config --libs lua5.1)" -} - -package() { - cd "$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: |