mirror of
				https://github.com/Ysurac/openmptcprouter-feeds.git
				synced 2025-03-09 15:40:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			45 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			45 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Copyright (C) 2019 Ycarus (Yannick Chabanois) <ycarus@zugaina.org>
 | 
						|
#
 | 
						|
# This is free software, licensed under the GNU General Public License v2.
 | 
						|
# See /LICENSE for more information.
 | 
						|
#
 | 
						|
 | 
						|
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME:=v2ray-core
 | 
						|
PKG_RELEASE:=1
 | 
						|
 | 
						|
PKG_SOURCE_PROTO:=git
 | 
						|
PKG_SOURCE_URL:=https://github.com/v2ray/v2ray-core.git
 | 
						|
PKG_SOURCE_VERSION:=8115221414394fecac400ed2afb77a4c5367fd31
 | 
						|
#PKG_SOURCE_VERSION:=d21d02d0e072b779405ebbbfb5e7f15e6d39d610
 | 
						|
PKG_SOURCE_DATE:=20190808
 | 
						|
#PKG_SOURCE_DATE:=20190228
 | 
						|
 | 
						|
PKG_LICENSE:=BSD-3-Clause
 | 
						|
PKG_LICENSE_FILES:=LICENSE
 | 
						|
 | 
						|
PKG_BUILD_DEPENDS:=golang/host
 | 
						|
PKG_BUILD_PARALLEL:=1
 | 
						|
 | 
						|
GO_PKG:=v2ray.com/core
 | 
						|
GO_PKG_SOURCE_ONLY:=1
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/package.mk
 | 
						|
include ../golang/golang-package.mk
 | 
						|
 | 
						|
define Package/v2ray-core-dev
 | 
						|
$(call GoPackage/GoSubMenu)
 | 
						|
  TITLE:=Go support for Google protocol buffers
 | 
						|
  URL:=https://github.com/golang/protobuf
 | 
						|
  DEPENDS:=$(GO_ARCH_DEPENDS) +protobuf
 | 
						|
  PKGARCH:=all
 | 
						|
endef
 | 
						|
 | 
						|
define Package/v2ray-core-dev/description
 | 
						|
Go support for Google protocol buffers
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call GoSrcPackage,v2ray-core-dev))
 | 
						|
$(eval $(call BuildPackage,v2ray-core-dev))
 |