fix HAVE_ISC_READER related error
[openwrt.git] / package / dnsmasq / Makefile
1 #
2 # Copyright (C) 2006 OpenWrt.org
3 #
4 # This is free software, licensed under the GNU General Public License v2.
5 # See /LICENSE for more information.
6 #
7 # $Id$
8
9 include $(TOPDIR)/rules.mk
10
11 PKG_NAME:=dnsmasq
12 PKG_VERSION:=2.33
13 PKG_RELEASE:=1
14
15 PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
16 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
17 PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq
18 PKG_MD5SUM:=45696461b6e6bc929273b1191ca50447
19 PKG_CAT:=zcat
20
21 include $(INCLUDE_DIR)/package.mk
22
23 define Package/dnsmasq
24 SECTION:=base
25 CATEGORY:=Network
26 DEFAULT:=y
27 TITLE:=A lightweight DNS and DHCP server
28 DESCRIPTION:=A lightweight DNS and DHCP server. It is intended to provide \\\
29 coupled DNS and DHCP service to a LAN.
30 URL:=http://www.thekelleys.org.uk/dnsmasq/
31 endef
32
33 define Package/dnsmasq/conffiles
34 /etc/dnsmasq.conf
35 endef
36
37 define Build/Compile
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" \
42 all
43 endef
44
45 define Package/dnsmasq/install
46 install -m0755 -d $(1)/etc
47 install -m0644 ./files/dnsmasq.conf $(1)/etc/dnsmasq.conf
48 install -m0755 -d $(1)/etc/init.d
49 install -m0755 ./files/dnsmasq.init $(1)/etc/init.d/S50dnsmasq
50 install -m0755 -d $(1)/usr/sbin
51 install -m0755 $(PKG_BUILD_DIR)/src/dnsmasq $(1)/usr/sbin/
52 endef
53
54 $(eval $(call BuildPackage,dnsmasq))
This page took 0.045526 seconds and 5 git commands to generate.