X-Git-Url: http://git.rohieb.name/openwrt.git/blobdiff_plain/f83ff5a9deae5d6688af201de4c09eb0c0f81686..a0525c29028ef599fddb31e96cc4b0835008a5d2:/openwrt/package/dnsmasq/Makefile diff --git a/openwrt/package/dnsmasq/Makefile b/openwrt/package/dnsmasq/Makefile index c6b7a8a9f..73a906135 100644 --- a/openwrt/package/dnsmasq/Makefile +++ b/openwrt/package/dnsmasq/Makefile @@ -4,7 +4,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=dnsmasq PKG_VERSION:=2.22 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_MD5SUM:=b38f33cd0703fa664a37a4595d918189 PKG_SOURCE_URL:=http://thekelleys.org.uk/dnsmasq @@ -16,14 +16,21 @@ include $(TOPDIR)/package/rules.mk $(eval $(call PKG_template,DNSMASQ,$(PKG_NAME),$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH))) +$(PKG_BUILD_DIR)/.configured: + touch $@ + $(PKG_BUILD_DIR)/.built: - $(MAKE) CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" \ - BINDIR=/usr/sbin MANDIR=/usr/man -C $(PKG_BUILD_DIR) + $(MAKE) -C $(PKG_BUILD_DIR) \ + CC=$(TARGET_CC) CFLAGS="$(TARGET_CFLAGS)" \ + BINDIR=/usr/sbin MANDIR=/usr/man touch $@ $(IPKG_DNSMASQ): - mkdir -p $(IDIR_DNSMASQ)/usr/sbin + install -d -m0755 $(IDIR_DNSMASQ)/usr/sbin cp $(PKG_BUILD_DIR)/src/$(PKG_NAME) $(IDIR_DNSMASQ)/usr/sbin/ $(STRIP) $(IDIR_DNSMASQ)/usr/sbin/* + install -d -m0755 $(IDIR_DNSMASQ)/etc/init.d/ + install -m0644 ./files/dnsmasq.conf $(IDIR_DNSMASQ)/etc/dnsmasq.conf + install -m0755 ./files/S50dnsmasq $(IDIR_DNSMASQ)/etc/init.d/S50dnsmasq $(IPKG_BUILD) $(IDIR_DNSMASQ) $(PACKAGE_DIR)