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