37375312b9
In issue https://github.com/termux/termux-packages/issues/6160 I have found that community repo "its-pointless.github.io" specifies us as maintainer for its packages. This is NOT TRUE and potentially misleads people using these packages. Now TERMUX_PKG_MAINTAINER will contain a default value which is neutral and not specify maintainer. So all packages now have to override it to the correct value. [skip ci] %ci:no-build
22 lines
609 B
Bash
22 lines
609 B
Bash
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_MAINTAINER="@termux"
|
|
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
|
|
}
|