22 lines
742 B
Bash
22 lines
742 B
Bash
TERMUX_PKG_HOMEPAGE=https://hub.github.com/
|
|
TERMUX_PKG_DESCRIPTION="Command-line wrapper for git that makes you better at GitHub"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_VERSION=2.11.2
|
|
TERMUX_PKG_REVISION=1
|
|
TERMUX_PKG_SHA256=1a80685d3d4fe14012c4f5e5cda9a2c5fe680a81729e692008aa1414f8e1f972
|
|
TERMUX_PKG_SRCURL=https://github.com/github/hub/archive/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_DEPENDS="git"
|
|
|
|
termux_step_make_install() {
|
|
termux_setup_golang
|
|
|
|
cd $TERMUX_PKG_SRCDIR
|
|
|
|
export GOPATH="${TERMUX_PKG_BUILDDIR}"
|
|
mkdir -p "${GOPATH}/src/github.com/github"
|
|
cp -a "${TERMUX_PKG_SRCDIR}" "${GOPATH}/src/github.com/github/hub"
|
|
cd "${GOPATH}/src/github.com/github/hub"
|
|
make bin/hub prefix=$TERMUX_PREFIX
|
|
cp ./bin/hub $TERMUX_PREFIX/bin/hub
|
|
}
|