mirror of
https://github.com/novatiq/packages.git
synced 2026-06-22 21:30:27 +01:00
07cdf98ba2
Previous code was downloading file v1.3.0, which is wrong, because in the dl folder there might be some tarballs with that naming and they are wrong as well. This could lead to some issues like this: Hash of the local file v1.3.0.tar.gz does not match (file: 87cf846b02dde6328b84832287d8725d91f12f41366eecb4d59eeda1d6c7efdf, requested: b94fba0251a4a436e25b127d0b9bc0181b991631f1dc8e344b1c8e895b55375d) - deleting download. Even though, if you tried it on SDK or minimal build when there is a small number of packages, you most likely don't encounter it. The correct solution is to download files with their name and version. E.g. nebula-version.tar.gz as it is in PKG_SOURCE variable now. Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
75 lines
2.5 KiB
Makefile
75 lines
2.5 KiB
Makefile
# Copyright 2021 Stan Grishin (stangri@melmac.net)
|
|
# This is free software, licensed under the MIT License.
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=nebula
|
|
PKG_VERSION:=1.3.0
|
|
PKG_RELEASE:=1
|
|
PKG_MAINTAINER:=Stan Grishin <stangri@melmac.net>
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_SOURCE_URL:=https://codeload.github.com/slackhq/nebula/tar.gz/v$(PKG_VERSION)?
|
|
PKG_HASH:=b94fba0251a4a436e25b127d0b9bc0181b991631f1dc8e344b1c8e895b55375d
|
|
PKG_LICENSE:=MIT
|
|
PKG_LICENSE_FILES:=LICENSE
|
|
|
|
PKG_BUILD_DEPENDS:=golang/host
|
|
PKG_BUILD_PARALLEL:=1
|
|
PKG_USE_MIPS16:=0
|
|
GO_PKG:=github.com/slackhq/nebula
|
|
GO_PKG_LDFLAGS_X:=main.Build=$(PKG_VERSION)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
include ../../lang/golang/golang-package.mk
|
|
|
|
define Package/nebula
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=nebula
|
|
URL:=https://github.com/slackhq/nebula
|
|
DEPENDS:=$(GO_ARCH_DEPENDS) +kmod-tun
|
|
endef
|
|
|
|
define Package/nebula-cert
|
|
SECTION:=net
|
|
CATEGORY:=Network
|
|
TITLE:=nebula-cert
|
|
URL:=https://github.com/slackhq/nebula
|
|
DEPENDS:=$(GO_ARCH_DEPENDS)
|
|
endef
|
|
|
|
define Package/nebula/description
|
|
Nebula is a scalable overlay networking tool with a focus on performance, simplicity
|
|
and security. It lets you seamlessly connect computers anywhere in the world.
|
|
endef
|
|
|
|
define Package/nebula-cert/description
|
|
$(call Package/nebula/description)
|
|
This package contains only nebula-cert binary.
|
|
endef
|
|
|
|
define Package/nebula/install
|
|
$(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR))
|
|
$(INSTALL_DIR) $(1)/etc/init.d $(1)/usr/sbin $(1)/usr/share/doc/nebula $(1)/lib/upgrade/keep.d
|
|
$(INSTALL_BIN) ./files/nebula.init $(1)/etc/init.d/nebula
|
|
$(SED) "s|^\(PKG_VERSION\).*|\1='$(PKG_VERSION)-$(PKG_RELEASE)'|" $(1)/etc/init.d/nebula
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/nebula $(1)/usr/sbin/nebula
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/LICENSE $(1)/usr/share/doc/nebula/LICENSE
|
|
$(INSTALL_DATA) ./files/nebula.upgrade $(1)/lib/upgrade/keep.d/nebula
|
|
endef
|
|
|
|
define Package/nebula-cert/install
|
|
$(call GoPackage/Package/Install/Bin,$(PKG_INSTALL_DIR))
|
|
$(INSTALL_DIR) $(1)/usr/sbin $(1)/usr/share/doc/nebula-cert $(1)/lib/upgrade/keep.d
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/nebula-cert $(1)/usr/sbin/nebula-cert
|
|
$(INSTALL_DATA) $(PKG_BUILD_DIR)/LICENSE $(1)/usr/share/doc/nebula-cert/LICENSE
|
|
$(INSTALL_DATA) ./files/nebula.upgrade $(1)/lib/upgrade/keep.d/nebula-cert
|
|
endef
|
|
|
|
$(eval $(call GoBinPackage,nebula))
|
|
$(eval $(call BuildPackage,nebula))
|
|
|
|
$(eval $(call GoBinPackage,nebula-cert))
|
|
$(eval $(call BuildPackage,nebula-cert))
|