1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-19 11:17:07 +00:00
termux-packages/packages/litespeedtest/build.sh
Termux Github Actions a861e791cb bump(main/litespeedtest): 0.13.1
This commit has been automatically submitted by Github Actions.
2022-11-22 18:17:19 +00:00

22 lines
699 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/xxf098/LiteSpeedTest
TERMUX_PKG_DESCRIPTION="A simple tool for batch test ss/ssr/v2ray/trojan servers"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.13.1"
TERMUX_PKG_SRCURL=https://github.com/xxf098/LiteSpeedTest/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=8fb3db4a680d6fa87334c97240aa93eee2d63b7034b7882f6342a1374cc07f99
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_MAKE_ARGS="VERSION=$TERMUX_PKG_VERSION"
TERMUX_PKG_AUTO_UPDATE=true
termux_step_pre_configure() {
termux_setup_golang
go mod init || :
go mod tidy
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin bin/lite
}