mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-11 20:30:53 +00:00
24 lines
845 B
Bash
24 lines
845 B
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/shenwei356/rush
|
|
TERMUX_PKG_DESCRIPTION="A cross-platform command-line tool for executing jobs in parallel"
|
|
TERMUX_PKG_LICENSE="MIT"
|
|
TERMUX_PKG_MAINTAINER="Krishna kanhaiya @kcubeterm"
|
|
TERMUX_PKG_VERSION="0.8.0"
|
|
TERMUX_PKG_SRCURL=https://github.com/shenwei356/rush/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
|
|
TERMUX_PKG_SHA256=d8d04a4fd506a2f369ec8753b339364cd7e58749f794d60cf2cbbb2a5833c8ec
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
|
|
termux_step_make_install() {
|
|
termux_setup_golang
|
|
|
|
cd "$TERMUX_PKG_SRCDIR"
|
|
|
|
export GOPATH="${TERMUX_PKG_BUILDDIR}"
|
|
mkdir -p "${GOPATH}/src/github.com/shenwei356"
|
|
cp -a "${TERMUX_PKG_SRCDIR}" "${GOPATH}/src/github.com/shenwei356/rush"
|
|
cd "${GOPATH}/src/github.com/shenwei356/rush"
|
|
go get -d -v
|
|
go install
|
|
|
|
install -Dm700 $TERMUX_PKG_BUILDDIR/bin/*/rush $TERMUX_PREFIX/bin/
|
|
}
|