speedtest-go: add new package

This is a Command Line Interface (CLI) and pure Go API to
test internet speed using speedtest.net. Its upstream is
https://github.com/showwin/speedtest-go

Signed-off-by: TeleostNaCl Dai <teleostnacl@gmail.com>
This commit is contained in:
TeleostNaCl Dai 2024-04-26 15:59:12 +08:00
parent f471b6b459
commit a408428351
1 changed files with 42 additions and 0 deletions

42
net/speedtest-go/Makefile Normal file
View File

@ -0,0 +1,42 @@
# SPDX-License-Identifier: GPL-3.0-only
#
# Copyright (C) 2021 ImmortalWrt.org
include $(TOPDIR)/rules.mk
PKG_NAME:=speedtest-go
PKG_VERSION:=1.6.11
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/showwin/speedtest-go/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=e09e1532bf3d1d78cad6546e8614e72e818fb14c3a7c11d609905c9ae7337930
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE
PKG_MAINTAINER:=TeleostNaCl Dai <teleostnacl@gmail.com>
PKG_BUILD_DEPENDS:=golang/host
PKG_BUILD_PARALLEL:=1
PKG_BUILD_FLAGS:=no-mips16
GO_PKG:=github.com/showwin/speedtest-go
include $(INCLUDE_DIR)/package.mk
include ../../lang/golang/golang-package.mk
define Package/speedtest-go
SECTION:=net
CATEGORY:=Network
TITLE:=Test Internet Speed
URL:=https://github.com/showwin/speedtest-go
DEPENDS:=$(GO_ARCH_DEPENDS) +ca-bundle
endef
define Package/speedtest-go/description
Command Line Interface and pure Go API to
Test Internet Speed using speedtest.net
endef
$(eval $(call GoBinPackage,speedtest-go))
$(eval $(call BuildPackage,speedtest-go))