2014-07-20 01:25:22 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gluon-wan-dnsmasq
|
|
|
|
PKG_VERSION:=1
|
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
2016-10-08 22:18:45 +00:00
|
|
|
include ../gluon.mk
|
2016-07-10 18:08:44 +00:00
|
|
|
|
2014-07-20 01:25:22 +00:00
|
|
|
|
|
|
|
define Package/gluon-wan-dnsmasq
|
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
|
|
|
TITLE:=Support for a secondary DNS server using the WAN interface
|
2017-01-19 16:31:44 +00:00
|
|
|
DEPENDS:=+gluon-core +libubus-lua +dnsmasq +libpacketmark
|
2014-07-20 01:25:22 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gluon-wan-dnsmasq/description
|
|
|
|
Gluon community wifi mesh firmware framework: Support for a secondary DNS server using the WAN interface
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2016-07-10 18:08:44 +00:00
|
|
|
$(call GluonSrcDiet,./luasrc,$(PKG_BUILD_DIR)/luadest/)
|
2014-07-20 01:25:22 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gluon-wan-dnsmasq/install
|
|
|
|
$(CP) ./files/* $(1)/
|
2016-07-10 18:08:44 +00:00
|
|
|
$(CP) $(PKG_BUILD_DIR)/luadest/* $(1)/
|
2014-07-20 01:25:22 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,gluon-wan-dnsmasq))
|