blob: 590be4a7a89f8cf343b71c7821e53ad91befab40 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# $Id: PKGBUILD 189772 2013-07-07 19:08:06Z dreisner $
# Maintainer: Dave Reisner <dreisner@archlinux.org>
# Contributor: Paul Mattal <paul@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
pkgname=dnsmasq
pkgver=2.66
pkgrel=2
pkgdesc="Lightweight, easy to configure DNS forwarder and DHCP server"
url="http://www.thekelleys.org.uk/dnsmasq/doc.html"
arch=('i686' 'x86_64' 'mips64el')
license=('GPL')
depends=('glibc' 'dbus-core')
install=$pkgname.install
backup=('etc/dnsmasq.conf')
source=("http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz"
'0001-Fix-wrong-size-in-memset-call.patch'
'0001-Fix-failure-to-start-with-ENOTSOCK.patch'
'dnsmasq.service')
md5sums=('cd1c70dd66d2e3ad02b66ca6af4ebf20'
'05ccefefde68ebdebce5e40d2b3c78be'
'98cc950a6b0482eb7e61969dafb4f764'
'7ac45726cabef4145db40d758cc7fedf')
prepare() {
cd "$pkgname-$pkgver"
patch -Np1 <"$srcdir/0001-Fix-wrong-size-in-memset-call.patch"
patch -Np1 <"$srcdir/0001-Fix-failure-to-start-with-ENOTSOCK.patch"
}
build() {
cd "$pkgname-$pkgver"
# link against dbus. this ugliness is needed to ensure that the
# compile time opts report properly on startup. yuck.
sed -i '/^#ifdef DNSMASQ_COMPILE_OPTS/ i#define HAVE_DBUS' src/config.h
make "CFLAGS=$CPPFLAGS $CFLAGS" "LDFLAGS=$LDFLAGS"
}
package() {
cd "$pkgname-$pkgver"
make BINDIR=/usr/bin PREFIX=/usr DESTDIR="$pkgdir" install
install -Dm644 "dbus/dnsmasq.conf" "$pkgdir"/etc/dbus-1/system.d/dnsmasq.conf
install -Dm644 "dnsmasq.conf.example" "$pkgdir"/etc/dnsmasq.conf
install -Dm644 "$srcdir/dnsmasq.service" "$pkgdir"/usr/lib/systemd/system/dnsmasq.service
}
# vim: ts=2 sw=2 et ft=sh
|