2005-03-21 10:12:49 +02:00
|
|
|
# $Id$
|
|
|
|
|
2005-03-06 05:34:52 +02:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2005-03-06 05:53:29 +02:00
|
|
|
PKG_NAME:=dnsmasq
|
2006-03-16 23:31:14 +02:00
|
|
|
PKG_VERSION:=2.27
|
2005-10-20 16:52:02 +03:00
|
|
|
PKG_RELEASE:=1
|
2005-03-21 10:12:49 +02:00
|
|
|
|
2005-03-06 05:53:29 +02:00
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
2006-05-10 02:19:52 +03:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
|
|
PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq
|
|
|
|
PKG_MD5SUM:=489198ec87101087043adc98bbe062dc
|
2005-03-06 05:53:29 +02:00
|
|
|
PKG_CAT:=zcat
|
2005-03-06 05:34:52 +02:00
|
|
|
|
2005-05-12 22:41:18 +03:00
|
|
|
include $(TOPDIR)/package/rules.mk
|
2005-03-06 05:53:29 +02:00
|
|
|
|
2006-05-10 02:19:52 +03: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
|
|
|
|
|
|
|
|
define Package/dnsmasq/install
|
2006-05-11 19:00:43 +03:00
|
|
|
install -m0755 -d $(1)/usr/sbin
|
|
|
|
install -m0755 -d $(1)/etc/init.d/
|
|
|
|
install -m0755 $(PKG_BUILD_DIR)/src/dnsmasq $(1)/usr/sbin/
|
|
|
|
install -m0644 ./files/dnsmasq.conf $(1)/etc/dnsmasq.conf
|
|
|
|
install -m0755 ./files/dnsmasq.init $(1)/etc/init.d/S50dnsmasq
|
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))
|