mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-11 23:00:52 +00:00
ebad0dfa9d
This commit has been automatically submitted by Github Actions.
33 lines
1.0 KiB
Bash
33 lines
1.0 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/golang/tools
|
|
TERMUX_PKG_DESCRIPTION="The official Go language server"
|
|
TERMUX_PKG_LICENSE="BSD 3-Clause"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="0.16.2"
|
|
TERMUX_PKG_SRCURL=https://github.com/golang/tools/archive/refs/tags/gopls/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=be68b3159fcb8cde9ebb8b468f67f03531c58be2de33edbac69e5599f2d4a2c1
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_UPDATE_VERSION_REGEXP="\d+\.\d+\.\d+"
|
|
|
|
termux_pkg_auto_update() {
|
|
# Get the newest tag:
|
|
local tag
|
|
tag="$(termux_github_api_get_tag "${TERMUX_PKG_SRCURL}" "${TERMUX_PKG_UPDATE_TAG_TYPE}")"
|
|
# check if this is not a release:
|
|
if grep -qP "^gopls/v${TERMUX_PKG_UPDATE_VERSION_REGEXP}\$" <<<"$tag"; then
|
|
termux_pkg_upgrade_version "$tag"
|
|
else
|
|
echo "WARNING: Skipping auto-update: Not a release($tag)"
|
|
fi
|
|
}
|
|
|
|
termux_step_make() {
|
|
termux_setup_golang
|
|
|
|
cd $TERMUX_PKG_SRCDIR/gopls
|
|
go build -o gopls
|
|
}
|
|
|
|
termux_step_make_install() {
|
|
install -Dm755 -t $TERMUX_PREFIX/bin $TERMUX_PKG_SRCDIR/gopls/gopls
|
|
}
|