0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-02-22 15:47:26 +00:00
Termux Github Actions 8bcc8ee4cd bump(main/elvish): 0.21.0
This commit has been automatically submitted by Github Actions.
2024-08-14 18:10:38 +00:00

26 lines
799 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/elves/elvish
TERMUX_PKG_DESCRIPTION="A friendly and expressive Unix shell"
TERMUX_PKG_LICENSE="BSD 2-Clause"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="0.21.0"
TERMUX_PKG_SRCURL=https://github.com/elves/elvish/archive/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=3a4b93c3c99fe2f9847de35d64be24e2d4b9c12d429cd9831b4571993a66bb7a
TERMUX_PKG_AUTO_UPDATE=true
termux_step_make() {
termux_setup_golang
export GOPATH=$TERMUX_PKG_BUILDDIR
mkdir -p "$GOPATH"/src/github.com/elves
ln -sf "$TERMUX_PKG_SRCDIR" "$GOPATH"/src/github.com/elves/elvish
cd "$GOPATH"/src/github.com/elves/elvish/cmd/elvish
go build
}
termux_step_make_install() {
install -Dm700 \
"$GOPATH"/src/github.com/elves/elvish/cmd/elvish/elvish \
"$TERMUX_PREFIX"/bin/elvish
}