termux-packages/packages/shell2http/build.sh

28 lines
887 B
Bash
Raw Normal View History

2020-05-08 11:57:37 +02:00
TERMUX_PKG_HOMEPAGE=https://github.com/msoap/shell2http
TERMUX_PKG_DESCRIPTION="Executing shell commands via HTTP server"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="Krishna kanhaiya @kcubeterm"
TERMUX_PKG_VERSION=1.13
2021-05-16 11:16:50 +02:00
TERMUX_PKG_REVISION=2
2020-05-08 11:57:37 +02:00
TERMUX_PKG_SRCURL=https://github.com/msoap/shell2http/archive/${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=6094762a3e54efddcbc361d80ef281624d2647f17f6b0c787cab713626d861e3
TERMUX_PKG_AUTO_UPDATE=true
2020-05-08 11:57:37 +02:00
termux_step_make() {
termux_setup_golang
2020-05-08 11:57:37 +02:00
cd "$TERMUX_PKG_SRCDIR"
2020-05-08 11:57:37 +02:00
export GOPATH="${TERMUX_PKG_BUILDDIR}"
mkdir -p "${GOPATH}/src/github.com/msoap/"
cp -a "${TERMUX_PKG_SRCDIR}" "${GOPATH}/src/github.com/msoap/shell2http"
cd "${GOPATH}/src/github.com/msoap/shell2http"
2021-05-16 11:16:50 +02:00
go mod init
go get -d -v
go build
2020-05-08 11:57:37 +02:00
}
termux_step_make_install() {
install -Dm700 -t "$TERMUX_PREFIX"/bin "$GOPATH"/src/github.com/msoap/shell2http/shell2http
2020-05-08 11:57:37 +02:00
}