2005-03-21 08:12:49 +00:00
|
|
|
# $Id$
|
|
|
|
|
2005-03-06 03:34:52 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2005-03-06 03:53:29 +00:00
|
|
|
PKG_NAME:=dnsmasq
|
2006-03-16 21:31:14 +00:00
|
|
|
PKG_VERSION:=2.27
|
2005-10-20 13:52:02 +00:00
|
|
|
PKG_RELEASE:=1
|
2005-03-21 08:12:49 +00:00
|
|
|
|
2005-03-06 03:53:29 +00:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
2006-05-09 23:19:52 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq
|
|
|
|
PKG_MD5SUM:=489198ec87101087043adc98bbe062dc
|
2005-03-06 03:53:29 +00:00
|
|
|
PKG_CAT:=zcat
|
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
|
|
|
|
SECTION:=base
|
|
|
|
CATEGORY:=Network
|
|
|
|
DEFAULT:=y
|
|
|
|
TITLE:=A lightweight DNS and DHCP server
|
|
|
|
DESCRIPTION:=A lightweight DNS and DHCP server. It is intended to provide \\\
|
|
|
|
coupled DNS and DHCP service to a LAN.
|
|
|
|
URL:=http://www.thekelleys.org.uk/dnsmasq/
|
|
|
|
endef
|
|
|
|
|
2006-06-18 18:27:23 +00:00
|
|
|
define Package/dnsmasq/conffiles
|
|
|
|
/etc/dnsmasq.conf
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
|
|
|
CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" \
|
|
|
|
BINDIR="/usr/sbin" MANDIR="/usr/man" \
|
|
|
|
all
|
|
|
|
endef
|
|
|
|
|
2006-05-09 23:19:52 +00:00
|
|
|
define Package/dnsmasq/install
|
2006-06-18 18:27:23 +00:00
|
|
|
install -m0755 -d $(1)/etc
|
2006-05-11 16:00:43 +00:00
|
|
|
install -m0644 ./files/dnsmasq.conf $(1)/etc/dnsmasq.conf
|
2006-06-18 18:27:23 +00:00
|
|
|
install -m0755 -d $(1)/etc/init.d
|
2006-05-11 16:00:43 +00:00
|
|
|
install -m0755 ./files/dnsmasq.init $(1)/etc/init.d/S50dnsmasq
|
2006-06-18 18:27:23 +00:00
|
|
|
install -m0755 -d $(1)/usr/sbin
|
|
|
|
install -m0755 $(PKG_BUILD_DIR)/src/dnsmasq $(1)/usr/sbin/
|
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))
|