summaryrefslogtreecommitdiff
path: root/extra/dnsmasq/PKGBUILD
blob: 1b584820dba4e14333c80a1ca9f00a148aa51ef8 (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
# $Id: PKGBUILD 140810 2011-10-19 16:21:22Z dreisner $
# Maintainer: Dave Reisner <dreisner@archlinux.org>
# Contributor: Paul Mattal <paul@archlinux.org>
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>

pkgname=dnsmasq
pkgver=2.59
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')
makedepends=('libcap>=2.16')
install=$pkgname.install
backup=('etc/dnsmasq.conf'
        'etc/conf.d/dnsmasq')
source=("http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.gz"
        'dnsmasq.confd'
        'rc.dnsmasq'
        'dnsmasq.service')
md5sums=('29d43f182ecad06d64b3598c02380a80'
         '66479e99123faeab83ebaed709ef95b5'
         '9f180cc236808bbd02ca8652fd2e8217'
         'f329d86f8ba1cd85f9b6ee59e0ce3791')

build() {
  cd "$srcdir/$pkgname-$pkgver"

  # link against dbus
  echo '#define HAVE_DBUS' >> src/config.h

  make
}

package() {
  cd "$srcdir/$pkgname-$pkgver"

  make PREFIX=/usr DESTDIR="$pkgdir" install

  install -Dm755 "$srcdir"/rc.dnsmasq "$pkgdir"/etc/rc.d/dnsmasq
  install -Dm644 "$srcdir"/dnsmasq.confd "$pkgdir/etc/conf.d/dnsmasq"

  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"/lib/systemd/system/dnsmasq.service
}

# vim: ts=2 sw=2 et ft=sh