#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=zerotier
|
|
PKG_VERSION:=1.6.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/zerotier/ZeroTierOne/tar.gz/$(PKG_VERSION)?
|
|
PKG_HASH:=437d51a396e65f45822b0e5ee3761e3dfaf3507d9cc8f9b01e09c5541395d7b2
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/ZeroTierOne-$(PKG_VERSION)
|
|
|
|
PKG_MAINTAINER:=Moritz Warning <moritzwarning@web.de>
|
|
PKG_LICENSE:=BSL 1.1
|
|
PKG_LICENSE_FILES:=LICENSE.txt
|
|
|
|
PKG_ASLR_PIE:=0
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/zerotier
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
DEPENDS:=+libpthread +libstdcpp +kmod-tun +ip +libminiupnpc +libnatpmp
|
|
TITLE:=Create flat virtual Ethernet networks of almost unlimited size
|
|
URL:=https://www.zerotier.com
|
|
SUBMENU:=VPN
|
|
endef
|
|
|
|
define Package/zerotier/description
|
|
ZeroTier creates a global provider-independent virtual private cloud network.
|
|
endef
|
|
|
|
define Package/zerotier/config
|
|
source "$(SOURCE)/Config.in"
|
|
endef
|
|
|
|
ifeq ($(CONFIG_ZEROTIER_ENABLE_DEBUG),y)
|
|
MAKE_FLAGS += ZT_DEBUG=1
|
|
endif
|
|
|
|
MAKE_FLAGS += \
|
|
DEFS="" \
|
|
|
|
define Build/Compile
|
|
$(call Build/Compile/Default,one)
|
|
ifeq ($(CONFIG_ZEROTIER_ENABLE_SELFTEST),y)
|
|
$(call Build/Compile/Default,selftest)
|
|
endif
|
|
endef
|
|
|
|
# Make binary smaller
|
|
TARGET_CFLAGS += -ffunction-sections -fdata-sections
|
|
TARGET_LDFLAGS += -Wl,--gc-sections,--as-needed
|
|
|
|
define Package/zerotier/conffiles
|
|
/etc/config/zerotier
|
|
endef
|
|
|
|
define Package/zerotier/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/zerotier-one $(1)/usr/bin/
|
|
$(LN) zerotier-one $(1)/usr/bin/zerotier-cli
|
|
$(LN) zerotier-one $(1)/usr/bin/zerotier-idtool
|
|
|
|
ifeq ($(CONFIG_ZEROTIER_ENABLE_SELFTEST),y)
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/zerotier-selftest $(1)/usr/bin/
|
|
endif
|
|
|
|
$(CP) ./files/* $(1)/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,zerotier))
|
|
|