33 lines
1.1 KiB
Bash
33 lines
1.1 KiB
Bash
# Template file for 'dnsmasq'
|
|
pkgname=dnsmasq
|
|
version=2.80
|
|
revision=1
|
|
hostmakedepends="pkg-config"
|
|
makedepends="dbus-devel libcap-devel libidn-devel $(vopt_if dnssec nettle-devel)"
|
|
conf_files="/etc/dnsmasq.conf"
|
|
system_accounts="dnsmasq"
|
|
dnsmasq_homedir="/var/chroot"
|
|
short_desc="Lightweight, easy to configure DNS forwarder and DHCP server"
|
|
maintainer="Juan RP <xtraeme@voidlinux.eu>"
|
|
license="GPL-2.0-or-later"
|
|
homepage="http://www.thekelleys.org.uk/dnsmasq/doc.html"
|
|
distfiles="http://www.thekelleys.org.uk/${pkgname}/${pkgname}-${version}.tar.gz"
|
|
checksum=9e4a58f816ce0033ce383c549b7d4058ad9b823968d352d2b76614f83ea39adc
|
|
|
|
build_options="dnssec"
|
|
desc_option_dnssec="Enable DNSSEC support via nettle"
|
|
|
|
do_build() {
|
|
echo '#define HAVE_DBUS' >> src/config.h
|
|
if [ "$build_option_dnssec" ]; then
|
|
echo '#define HAVE_DNSSEC' >> src/config.h
|
|
fi
|
|
make CC=$CC CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" ${makejobs}
|
|
}
|
|
do_install() {
|
|
make PREFIX=/usr BINDIR=/usr/bin DESTDIR=${DESTDIR} install
|
|
|
|
vsv dnsmasq
|
|
vconf dnsmasq.conf.example dnsmasq.conf
|
|
vinstall dbus/dnsmasq.conf 644 etc/dbus-1/system.d
|
|
}
|