# $Id: PKGBUILD 210095 2014-04-09 20:44:44Z dreisner $ # Maintainer: Dave Reisner # Contributor: Paul Mattal # Contributor: Tom Newsom pkgname=dnsmasq pkgver=2.69 pkgrel=1 pkgdesc="Lightweight, easy to configure DNS forwarder and DHCP server" url="http://www.thekelleys.org.uk/dnsmasq/doc.html" arch=('i686' 'x86_64') license=('GPL') depends=('glibc' 'libdbus' 'gmp' 'nettle') install=$pkgname.install backup=('etc/dnsmasq.conf') source=("http://www.thekelleys.org.uk/$pkgname/$pkgname-$pkgver.tar.xz"{,.asc} 'dnsmasq.service') md5sums=('c5a1152e646eb54db4f33f8e0deee180' 'SKIP' '7ac45726cabef4145db40d758cc7fedf') build() { cd "$pkgname-$pkgver" make \ CFLAGS="$CPPFLAGS $CFLAGS" \ LDFLAGS="$LDFLAGS" \ COPTS="-DHAVE_DNSSEC -DHAVE_DBUS" } 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 install -Dm644 "trust-anchors.conf" "$pkgdir"/usr/share/dnsmasq/trust-anchors.conf sed -i 's|%%PREFIX%%|/usr|' "$pkgdir/etc/dnsmasq.conf" } # vim: ts=2 sw=2 et ft=sh