package/tailscale: new package

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
James Hilliard 2024-10-28 10:29:26 -06:00 committed by Thomas Petazzoni
parent 70a777bb66
commit 0f34e78818
5 changed files with 35 additions and 0 deletions

View File

@ -1516,6 +1516,7 @@ F: package/serd/
F: package/sord/
F: package/sratom/
F: package/stb/
F: package/tailscale/
F: package/zchunk/
F: support/testing/tests/package/sample_python_rtoml.py
F: support/testing/tests/package/test_python_rtoml.py

View File

@ -2648,6 +2648,7 @@ endif
source "package/stunnel/Config.in"
source "package/suricata/Config.in"
source "package/system-config-printer/Config.in"
source "package/tailscale/Config.in"
source "package/tcpdump/Config.in"
source "package/tcping/Config.in"
source "package/tcpreplay/Config.in"

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_TAILSCALE
bool "tailscale"
depends on BR2_PACKAGE_HOST_GO_TARGET_ARCH_SUPPORTS
select BR2_PACKAGE_HOST_GO
help
The easiest, most secure way to use WireGuard and 2FA.
https://github.com/tailscale/tailscale

View File

@ -0,0 +1,3 @@
# Locally computed
sha256 46b68067a8b91f0e32ea8c23c292b9eb6675fac4c7bba5471a1f787bc3ad7412 tailscale-1.76.1-go2.tar.gz
sha256 d1ee1c7947d4b2c1963ea214d5324f1d4c89f2f1d0f0224889b4dfb868dad725 LICENSE

View File

@ -0,0 +1,22 @@
################################################################################
#
# tailscale
#
################################################################################
TAILSCALE_VERSION = 1.76.1
TAILSCALE_SITE = $(call github,tailscale,tailscale,v$(TAILSCALE_VERSION))
TAILSCALE_LICENSE = BSD-3-Clause
TAILSCALE_LICENSE_FILES = LICENSE
TAILSCALE_GOMOD = tailscale.com
TAILSCALE_BUILD_TARGETS = cmd/tailscale cmd/tailscaled
TAILSCALE_INSTALL_BINS = tailscale tailscaled
TAILSCALE_LDFLAGS = \
-X tailscale.com/version.longStamp=$(TAILSCALE_VERSION) \
-X tailscale.com/version.shortStamp=$(TAILSCALE_VERSION)
define TAILSCALE_LINUX_CONFIG_FIXUPS
$(call KCONFIG_ENABLE_OPT,CONFIG_TUN)
endef
$(eval $(golang-package))