2006-06-27 00:35:46 +00:00
|
|
|
#
|
2010-01-29 23:15:44 +00:00
|
|
|
# Copyright (C) 2006-2010 OpenWrt.org
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2005-03-21 08:12:49 +00:00
|
|
|
|
2005-03-06 03:34:52 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2005-03-06 03:53:29 +00:00
|
|
|
PKG_NAME:=dnsmasq
|
2010-06-22 07:09:16 +00:00
|
|
|
PKG_VERSION:=2.55
|
2010-07-17 13:36:13 +00:00
|
|
|
PKG_RELEASE:=3
|
2005-03-21 08:12:49 +00:00
|
|
|
|
2006-05-09 23:19:52 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq
|
2010-06-22 07:09:16 +00:00
|
|
|
PKG_MD5SUM:=b093d7c6bc7f97ae6fd35d048529232a
|
2005-03-06 03:34:52 +00:00
|
|
|
|
2006-06-21 02:32:39 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2005-03-06 03:53:29 +00:00
|
|
|
|
2006-05-09 23:19:52 +00:00
|
|
|
define Package/dnsmasq
|
2006-09-23 13:41:42 +00:00
|
|
|
SECTION:=net
|
|
|
|
CATEGORY:=Base system
|
|
|
|
TITLE:=A lightweight DNS and DHCP server
|
|
|
|
URL:=http://www.thekelleys.org.uk/dnsmasq/
|
2006-05-09 23:19:52 +00:00
|
|
|
endef
|
|
|
|
|
2007-09-07 08:34:51 +00:00
|
|
|
define Package/dnsmasq/description
|
|
|
|
It is intended to provide coupled DNS and DHCP service to a LAN.
|
|
|
|
endef
|
|
|
|
|
2009-02-03 22:27:44 +00:00
|
|
|
define Package/dnsmasq/conffiles
|
|
|
|
/etc/config/dhcp
|
2009-09-21 13:25:11 +00:00
|
|
|
/etc/dnsmasq.conf
|
2009-02-03 22:27:44 +00:00
|
|
|
endef
|
|
|
|
|
2006-06-18 18:27:23 +00:00
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
2006-08-04 05:30:27 +00:00
|
|
|
$(TARGET_CONFIGURE_OPTS) \
|
2010-03-01 21:19:05 +00:00
|
|
|
CFLAGS="$(TARGET_CFLAGS)" \
|
2006-06-18 18:27:23 +00:00
|
|
|
BINDIR="/usr/sbin" MANDIR="/usr/man" \
|
2008-03-31 21:17:45 +00:00
|
|
|
AWK="awk" \
|
2006-06-18 18:27:23 +00:00
|
|
|
all
|
|
|
|
endef
|
|
|
|
|
2006-05-09 23:19:52 +00:00
|
|
|
define Package/dnsmasq/install
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/dnsmasq $(1)/usr/sbin/
|
2007-03-17 13:31:13 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/config
|
|
|
|
$(INSTALL_DATA) ./files/dhcp.conf $(1)/etc/config/dhcp
|
2009-09-21 13:25:11 +00:00
|
|
|
$(INSTALL_DATA) ./files/dnsmasq.conf $(1)/etc/dnsmasq.conf
|
2006-11-23 00:29:07 +00:00
|
|
|
$(INSTALL_DIR) $(1)/etc/init.d
|
|
|
|
$(INSTALL_BIN) ./files/dnsmasq.init $(1)/etc/init.d/dnsmasq
|
2006-05-09 23:19:52 +00:00
|
|
|
endef
|
2005-05-12 19:41:18 +00:00
|
|
|
|
2006-05-09 23:19:52 +00:00
|
|
|
$(eval $(call BuildPackage,dnsmasq))
|