39 lines
		
	
	
		
			818 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			818 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME:=gluon-mesh-vpn-tunneldigger
 | 
						|
PKG_VERSION:=3
 | 
						|
 | 
						|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
 | 
						|
 | 
						|
include ../gluon.mk
 | 
						|
 | 
						|
define Package/gluon-mesh-vpn-tunneldigger
 | 
						|
  SECTION:=gluon
 | 
						|
  CATEGORY:=Gluon
 | 
						|
  TITLE:=Support for connecting meshes via tunneltigger/L2TPv3 pseudowire
 | 
						|
  DEPENDS:=+gluon-core +gluon-mesh-vpn-core +tunneldigger
 | 
						|
endef
 | 
						|
 | 
						|
define Build/Prepare
 | 
						|
	mkdir -p $(PKG_BUILD_DIR)
 | 
						|
endef
 | 
						|
 | 
						|
define Build/Configure
 | 
						|
endef
 | 
						|
 | 
						|
define Build/Compile
 | 
						|
	$(call GluonSrcDiet,./luasrc,$(PKG_BUILD_DIR)/luadest/)
 | 
						|
endef
 | 
						|
 | 
						|
define Package/gluon-mesh-vpn-tunneldigger/install
 | 
						|
	$(CP) ./files/* $(1)/
 | 
						|
	$(CP) $(PKG_BUILD_DIR)/luadest/* $(1)/
 | 
						|
endef
 | 
						|
 | 
						|
define Package/gluon-mesh-vpn-tunneldigger/postinst
 | 
						|
#!/bin/sh
 | 
						|
$(call GluonCheckSite,check_site.lua)
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call BuildPackage,gluon-mesh-vpn-tunneldigger))
 |