mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
added community/unbound
This commit is contained in:
parent
f64ede1b23
commit
2022f26944
4 changed files with 85 additions and 0 deletions
57
community/unbound/PKGBUILD
Normal file
57
community/unbound/PKGBUILD
Normal file
|
@ -0,0 +1,57 @@
|
||||||
|
# $Id$
|
||||||
|
# Maintainer: Gaetan Bisson <bisson@archlinux.org>
|
||||||
|
# Contributor: Hisato Tatekura <hisato_tatekura@excentrics.net>
|
||||||
|
# Contributor: Massimiliano Torromeo <massimiliano DOT torromeo AT google mail service>
|
||||||
|
|
||||||
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||||
|
# - disable LTO (--disable-flto)
|
||||||
|
|
||||||
|
pkgname=unbound
|
||||||
|
pkgver=1.5.6
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc='Validating, recursive, and caching DNS resolver'
|
||||||
|
url='http://unbound.net/'
|
||||||
|
license=('custom:BSD')
|
||||||
|
arch=('i686' 'x86_64')
|
||||||
|
makedepends=('expat')
|
||||||
|
optdepends=('expat: unbound-anchor')
|
||||||
|
depends=('openssl' 'ldns' 'libevent' 'dnssec-anchors')
|
||||||
|
backup=('etc/unbound/unbound.conf')
|
||||||
|
validpgpkeys=('EDFAA3F2CA4E6EB05681AF8E9F6F1C2D7E045F8D')
|
||||||
|
source=("http://unbound.net/downloads/${pkgname}-${pkgver}.tar.gz"{,.asc}
|
||||||
|
'service'
|
||||||
|
'conf')
|
||||||
|
sha1sums=('b1e521669d6e5a3c1baf8b71dad070e38887162b' 'SKIP'
|
||||||
|
'63fcc187cec6f262d81600e66c6747285c72ad15'
|
||||||
|
'98515708441cb831890a0b6d1986fd40649646c0')
|
||||||
|
|
||||||
|
install=install
|
||||||
|
|
||||||
|
build() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
|
||||||
|
./configure \
|
||||||
|
--prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--sbindir=/usr/bin \
|
||||||
|
--disable-rpath \
|
||||||
|
--with-libevent \
|
||||||
|
--with-rootkey-file=/etc/trusted-key.key \
|
||||||
|
--with-conf-file=/etc/unbound/unbound.conf \
|
||||||
|
--with-pidfile=/run/unbound.pid \
|
||||||
|
--enable-relro-now \
|
||||||
|
--enable-pie \
|
||||||
|
--disable-flto
|
||||||
|
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
cd "${srcdir}/${pkgname}-${pkgver}"
|
||||||
|
make DESTDIR="${pkgdir}" install
|
||||||
|
install -Dm644 doc/example.conf.in "${pkgdir}/etc/unbound/unbound.conf.example"
|
||||||
|
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||||
|
install -Dm644 ../service "${pkgdir}/usr/lib/systemd/system/unbound.service"
|
||||||
|
install -Dm644 ../conf "${pkgdir}/etc/unbound/unbound.conf"
|
||||||
|
}
|
5
community/unbound/conf
Normal file
5
community/unbound/conf
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
server:
|
||||||
|
use-syslog: yes
|
||||||
|
username: "unbound"
|
||||||
|
directory: "/etc/unbound"
|
||||||
|
trust-anchor-file: trusted-key.key
|
10
community/unbound/install
Normal file
10
community/unbound/install
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
post_install() {
|
||||||
|
getent group unbound &>/dev/null || groupadd -r unbound >/dev/null
|
||||||
|
getent passwd unbound &>/dev/null || useradd -r -g unbound -d /etc/unbound -s /bin/false -c unbound unbound >/dev/null
|
||||||
|
}
|
||||||
|
|
||||||
|
post_remove() {
|
||||||
|
getent passwd unbound &>/dev/null && userdel unbound >/dev/null
|
||||||
|
getent group unbound &>/dev/null && groupdel unbound >/dev/null
|
||||||
|
return 0
|
||||||
|
}
|
13
community/unbound/service
Normal file
13
community/unbound/service
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
[Unit]
|
||||||
|
Description=Unbound DNS Resolver
|
||||||
|
After=network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
ExecStartPre=/bin/cp -f /etc/trusted-key.key /etc/unbound/
|
||||||
|
PIDFile=/run/unbound.pid
|
||||||
|
ExecStart=/usr/bin/unbound -d
|
||||||
|
ExecReload=/bin/kill -HUP $MAINPID
|
||||||
|
Restart=always
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
Loading…
Reference in a new issue