new package: teleport-tsh (#5846)

This commit is contained in:
Roman Kredentser 2020-09-26 15:05:31 +03:00 committed by GitHub
parent 7062e7ce2d
commit 31cb14a603
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
TERMUX_PKG_HOMEPAGE=https://github.com/gravitational/teleport
TERMUX_PKG_DESCRIPTION="Secure Access for Developers that doesn't get in the way"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_VERSION=4.3.5
TERMUX_PKG_SKIP_SRC_EXTRACT=true
termux_step_make_install() {
termux_setup_golang
export GOPATH=$TERMUX_PKG_BUILDDIR
export BUILDDIR=$TERMUX_PREFIX/bin
mkdir -p $GOPATH/src/github.com/gravitational
cd $GOPATH/src/github.com/gravitational
git clone https://github.com/gravitational/teleport.git
cd teleport
git checkout "v$TERMUX_PKG_VERSION"
make $BUILDDIR/tsh
}