mirror of
				https://github.com/Ysurac/openmptcprouter-feeds.git
				synced 2025-03-09 15:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			53 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			53 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Copyright (C) 2015 OVH
 | 
						|
# Copyright (C) 2018-2020 Ycarus (Yannick Chabanois) <ycarus@zugaina.org> for OpenMPTCProuter project
 | 
						|
#
 | 
						|
# This is free software, licensed under the GNU General Public License v2.
 | 
						|
# See /LICENSE for more information.
 | 
						|
#
 | 
						|
 | 
						|
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_SOURCE_PROTO:=git
 | 
						|
PKG_SOURCE_URL:=https://github.com/angt/glorytun.git
 | 
						|
PKG_SOURCE_VERSION:=c113724eb0370ecd80d038192deeeb82a13ebed3
 | 
						|
PKG_NAME:=glorytun-udp
 | 
						|
PKG_VERSION:=0.3.4-$(PKG_SOURCE_VERSION)
 | 
						|
PKG_RELEASE:=23
 | 
						|
 | 
						|
PKG_FIXUP:=autoreconf
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/package.mk
 | 
						|
 | 
						|
define Package/$(PKG_NAME)
 | 
						|
SECTION:=net
 | 
						|
CATEGORY:=Network
 | 
						|
DEPENDS:=+kmod-tun +libsodium +librt
 | 
						|
TITLE:=Glorytun
 | 
						|
URL:=https://github.com/angt/glorytun
 | 
						|
SUBMENU:=VPN
 | 
						|
endef
 | 
						|
 | 
						|
#TARGET_CFLAGS += -std=c99 -D_GNU_SOURCE -DGT_RUNDIR=\"\\\"/tmp\"\\\"
 | 
						|
TARGET_CFLAGS += -DGT_RUNDIR=\"\\\"/tmp\"\\\"
 | 
						|
 | 
						|
define Package/$(PKG_NAME)/conffiles
 | 
						|
/etc/config/glorytun
 | 
						|
endef
 | 
						|
 | 
						|
define Build/Prepare
 | 
						|
	$(call Build/Prepare/Default)
 | 
						|
	echo "$(PKG_VERSION)" > $(PKG_BUILD_DIR)/VERSION
 | 
						|
endef
 | 
						|
 | 
						|
define Package/$(PKG_NAME)/install
 | 
						|
	$(INSTALL_DIR) $(1)/usr/sbin
 | 
						|
	$(INSTALL_BIN) $(PKG_BUILD_DIR)/glorytun $(1)/usr/sbin/$(PKG_NAME)
 | 
						|
	$(INSTALL_DIR) $(1)/etc/init.d
 | 
						|
	$(INSTALL_BIN) init $(1)/etc/init.d/$(PKG_NAME)
 | 
						|
	$(INSTALL_DIR) $(1)/etc/config
 | 
						|
	touch $(1)/etc/config/glorytun
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call BuildPackage,$(PKG_NAME)))
 | 
						|
 |