Files
termux-packages/packages/fx/build.sh
termux-pacman-bot d3c4c1aa30 bump(main/fx): 39.2.0
This commit has been automatically submitted by Github Actions.
2025-11-12 17:39:48 +00:00

20 lines
605 B
Bash

TERMUX_PKG_HOMEPAGE="https://github.com/antonmedv/fx"
TERMUX_PKG_DESCRIPTION="Interactive JSON viewer on your terminal"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@flosnvjx"
TERMUX_PKG_VERSION="39.2.0"
TERMUX_PKG_SRCURL="https://github.com/antonmedv/fx/archive/refs/tags/$TERMUX_PKG_VERSION.tar.gz"
TERMUX_PKG_SHA256=cdb98177f956615c961bc615fab0b30e73167295152d4f2d4cb70b16cdf47d6e
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_AUTO_UPDATE=true
termux_step_make() {
termux_setup_golang
mkdir bin
go build -o ./bin -trimpath
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin bin/*
}