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
:=57b8643dc394cf2fbd1bced64536c6df
20 PKG_BUILD_DIR
:=$(BUILD_DIR
)/$(PKG_NAME
)-$(PKG_VERSION
)
22 include $(INCLUDE_DIR
)/package.mk
24 define Package
/dnsmasq
27 TITLE
:=A lightweight DNS and DHCP server
29 It is intended to provide coupled DNS and DHCP service to a LAN.
30 URL
:=http
://www.thekelleys.org.uk
/dnsmasq
/
33 define Package
/dnsmasq
/conffiles
38 $(MAKE
) -C
$(PKG_BUILD_DIR
) \
39 $(TARGET_CONFIGURE_OPTS
) \
40 CFLAGS
="$(TARGET_CFLAGS) -DHAVE_ISC_READER=1" \
41 BINDIR
="/usr/sbin" MANDIR
="/usr/man" \
45 define Package
/dnsmasq
/install
46 $(INSTALL_DIR
) $(1)/usr
/sbin
47 $(INSTALL_BIN
) $(PKG_BUILD_DIR
)/src
/dnsmasq
$(1)/usr
/sbin
/
48 $(INSTALL_DIR
) $(1)/etc
49 $(INSTALL_DATA
) .
/files
/dnsmasq.conf
$(1)/etc
/dnsmasq.conf
50 $(INSTALL_DIR
) $(1)/etc
/init.d
51 $(INSTALL_BIN
) .
/files
/dnsmasq.init
$(1)/etc
/init.d
/dnsmasq
54 $(eval
$(call BuildPackage
,dnsmasq
))