36 lines
		
	
	
		
			729 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			729 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME:=gluon-wan-dnsmasq
 | 
						|
PKG_VERSION:=1
 | 
						|
 | 
						|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/package.mk
 | 
						|
 | 
						|
define Package/gluon-wan-dnsmasq
 | 
						|
  SECTION:=gluon
 | 
						|
  CATEGORY:=Gluon
 | 
						|
  TITLE:=Support for a secondary DNS server using the WAN interface
 | 
						|
  DEPENDS:=+gluon-core +dnsmasq +libpacketmark
 | 
						|
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
 | 
						|
endef
 | 
						|
 | 
						|
define Package/gluon-wan-dnsmasq/install
 | 
						|
	$(CP) ./files/* $(1)/
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call BuildPackage,gluon-wan-dnsmasq))
 |