65 lines
1.9 KiB
Makefile
65 lines
1.9 KiB
Makefile
#
|
|
# Copyright (C) 2021 CZ.NIC, z. s. p. o. (https://www.nic.cz/)
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=tailscale
|
|
PKG_VERSION:=1.76.3
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/tailscale/tailscale/tar.gz/v$(PKG_VERSION)?
|
|
PKG_HASH:=1cc2ef1b7b6491c48446ec4c20c413c2300e8b7e171b119d843af46d0ce3125f
|
|
|
|
PKG_MAINTAINER:=Zephyr Lykos <self@mochaa.ws>, \
|
|
Sandro Jäckel <sandro.jaeckel@gmail.com>
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/tailscale-$(PKG_VERSION)
|
|
PKG_BUILD_DEPENDS:=golang/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_BUILD_FLAGS:=no-mips16
|
|
|
|
GO_PKG:=\
|
|
tailscale.com/cmd/tailscaled
|
|
GO_PKG_LDFLAGS:=-X 'tailscale.com/version.longStamp=$(PKG_VERSION)-$(PKG_RELEASE) (OpenWrt)'
|
|
GO_PKG_LDFLAGS_X:=tailscale.com/version.shortStamp=$(PKG_VERSION)
|
|
GO_PKG_TAGS:=ts_include_cli,ts_omit_aws,ts_omit_bird,ts_omit_tap,ts_omit_kube,ts_omit_completion
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../../lang/golang/golang-package.mk
|
|
|
|
define Package/tailscale
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
SUBMENU:=VPN
|
|
TITLE:=Zero config VPN
|
|
URL:=https://tailscale.com
|
|
DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle +kmod-tun
|
|
PROVIDES:=tailscaled
|
|
endef
|
|
|
|
define Package/tailscale/description
|
|
It creates a secure network between your servers, computers,
|
|
and cloud instances. Even when separated by firewalls or subnets.
|
|
endef
|
|
|
|
define Package/tailscale/conffiles
|
|
/etc/config/tailscale
|
|
/etc/tailscale/
|
|
endef
|
|
|
|
define Package/tailscale/install
|
|
$(INSTALL_DIR) $(1)/usr/sbin $(1)/etc/init.d $(1)/etc/config
|
|
$(INSTALL_BIN) $(GO_PKG_BUILD_BIN_DIR)/tailscaled $(1)/usr/sbin
|
|
$(LN) tailscaled $(1)/usr/sbin/tailscale
|
|
$(INSTALL_BIN) ./files//tailscale.init $(1)/etc/init.d/tailscale
|
|
$(INSTALL_DATA) ./files//tailscale.conf $(1)/etc/config/tailscale
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,tailscale))
|