5b712ed40ce73cf997df9efbaa8094891602f44e
[openwrt/svn-archive/archive.git] / package / dnsmasq / Makefile
1 #
2 # Copyright (C) 2006-2009 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7
8 include $(TOPDIR)/rules.mk
9
10 PKG_NAME:=dnsmasq
11 PKG_VERSION:=2.47
12 PKG_RELEASE:=3.2
13
14 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
15 PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq
16 PKG_MD5SUM:=4524081e56d0b935717d493e8e8d3e11
17
18 include $(INCLUDE_DIR)/package.mk
19
20 define Package/dnsmasq
21 SECTION:=net
22 CATEGORY:=Base system
23 TITLE:=A lightweight DNS and DHCP server
24 URL:=http://www.thekelleys.org.uk/dnsmasq/
25 endef
26
27 define Package/dnsmasq/description
28 It is intended to provide coupled DNS and DHCP service to a LAN.
29 endef
30
31 define Package/dnsmasq/conffiles
32 /etc/config/dhcp
33 endef
34
35 define Build/Compile
36 $(MAKE) -C $(PKG_BUILD_DIR) \
37 $(TARGET_CONFIGURE_OPTS) \
38 CFLAGS="$(TARGET_CFLAGS) -DHAVE_ISC_READER=1" \
39 BINDIR="/usr/sbin" MANDIR="/usr/man" \
40 AWK="awk" \
41 all
42 endef
43
44 define Package/dnsmasq/install
45 $(INSTALL_DIR) $(1)/usr/sbin
46 $(INSTALL_BIN) $(PKG_BUILD_DIR)/src/dnsmasq $(1)/usr/sbin/
47 $(INSTALL_DIR) $(1)/etc/config
48 $(INSTALL_DATA) ./files/dhcp.conf $(1)/etc/config/dhcp
49 $(INSTALL_DIR) $(1)/etc/init.d
50 $(INSTALL_BIN) ./files/dnsmasq.init $(1)/etc/init.d/dnsmasq
51 endef
52
53 $(eval $(call BuildPackage,dnsmasq))