2 # Copyright (C) 2006 OpenWrt.org
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
9 include $(TOPDIR
)/rules.mk
15 PKG_SOURCE
:=$(PKG_NAME
)-$(PKG_VERSION
).
tar.gz
16 PKG_SOURCE_URL
:=http
://thekelleys.org.uk
/dnsmasq
17 PKG_MD5SUM
:=ab066a97c226066485ad20e5ad5ce424
19 include $(INCLUDE_DIR
)/package.mk
21 define Package
/dnsmasq
24 TITLE
:=A lightweight DNS and DHCP server
26 It is intended to provide coupled DNS and DHCP service to a LAN.
27 URL
:=http
://www.thekelleys.org.uk
/dnsmasq
/
30 define Package
/dnsmasq
/conffiles
35 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
36 $(TARGET_CONFIGURE_OPTS
) \
37 CFLAGS
="$(TARGET_CFLAGS) -DHAVE_ISC_READER=1" \
38 BINDIR
="/usr/sbin" MANDIR
="/usr/man" \
42 define Package
/dnsmasq
/install
43 $(INSTALL_DIR
) $(1)/usr
/sbin
44 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/src
/dnsmasq
$(1)/usr
/sbin
/
45 $(INSTALL_DIR
) $(1)/etc
/config
46 $(INSTALL_DATA
) .
/files
/dhcp.conf
$(1)/etc
/config
/dhcp
47 $(INSTALL_DATA
) .
/files
/dnsmasq.conf
$(1)/etc
/dnsmasq.conf
48 $(INSTALL_DIR
) $(1)/etc
/init.d
49 $(INSTALL_BIN
) .
/files
/dnsmasq.init
$(1)/etc
/init.d
/dnsmasq
52 $(eval
$(call BuildPackage
,dnsmasq
))