summaryrefslogtreecommitdiff
path: root/community/nsd/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/nsd/PKGBUILD
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/nsd/PKGBUILD')
-rw-r--r--community/nsd/PKGBUILD41
1 files changed, 0 insertions, 41 deletions
diff --git a/community/nsd/PKGBUILD b/community/nsd/PKGBUILD
deleted file mode 100644
index 06bf8a75b..000000000
--- a/community/nsd/PKGBUILD
+++ /dev/null
@@ -1,41 +0,0 @@
-# $Id: PKGBUILD 94613 2013-07-28 13:05:24Z bisson $
-# Maintainer: Gaetan Bisson <bisson@archlinux.org>
-# Contributor: Kaiting Chen <kaitocracy@gmail.com>
-# Contributor: Roberto Alsina <ralsina@kde.org>
-
-pkgname=nsd
-pkgver=3.2.16
-pkgrel=1
-pkgdesc='Authoritative only, high performance and simple DNS server'
-url='http://www.nlnetlabs.nl/nsd/'
-license=('BSD')
-depends=('openssl')
-makedepends=('flex')
-arch=('i686' 'x86_64')
-source=("http://www.nlnetlabs.nl/downloads/${pkgname}/${pkgname}-${pkgver}.tar.gz"
- 'service')
-sha1sums=('cb95efa819902799365691a0a7ddb3690a97df88'
- 'f35ecb887e86ae0a54ac70aef5a7577fc8761877')
-
-install=install
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- ./configure \
- --prefix=/ \
- --sbindir=/usr/bin \
- --datarootdir=/usr/share \
- --with-pidfile=/run/nsd.pid \
- --enable-ratelimit
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
- install -Dm644 ../service "${pkgdir}"/usr/lib/systemd/system/nsd.service
- rm doc/differences.pdf
- install -d "${pkgdir}"/usr/share/{doc,licenses}/"${pkgname}"
- install -m644 doc/* "${pkgdir}"/usr/share/doc/"${pkgname}"
- ln -s ../../doc/"${pkgname}"/LICENSE "${pkgdir}"/usr/share/licenses/"${pkgname}"/LICENSE
-}