Files
termux-packages/packages/flyctl/build.sh
termux-pacman-bot dd434664fe bump(main/flyctl): 0.4.11
This commit has been automatically submitted by Github Actions.
2026-02-13 14:26:34 +00:00

25 lines
738 B
Bash

TERMUX_PKG_HOMEPAGE=https://fly.io
TERMUX_PKG_DESCRIPTION="Command line tools for fly.io services"
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="Yaksh Bariya <thunder-coding@termux.dev>"
TERMUX_PKG_VERSION="0.4.11"
TERMUX_PKG_SRCURL=https://github.com/superfly/flyctl/archive/refs/tags/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=83d9a1db6f31a4156e86d8195950e3636e2a250cfa2a8a9c8809e198f5a757fc
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXCLUDED_ARCHES="i686, arm"
termux_step_post_get_source() {
termux_setup_golang
go mod tidy
go mod vendor
}
termux_step_make() {
go build -o bin/flyctl
}
termux_step_make_install() {
install -Dm700 -t "$TERMUX_PREFIX"/bin "$TERMUX_PKG_SRCDIR/bin/flyctl"
}