0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-09-21 22:09:42 +00:00
Files
termux-packages/packages/yq/build.sh
Termux Github Actions 4f6cfc3189 bump(main/yq): 4.45.1
This commit has been automatically submitted by Github Actions.
2025-01-12 06:10:23 +00:00

22 lines
630 B
Bash

TERMUX_PKG_HOMEPAGE=https://mikefarah.gitbook.io/yq/
TERMUX_PKG_DESCRIPTION="A lightweight and portable command-line YAML, JSON and XML processor"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="4.45.1"
TERMUX_PKG_SRCURL=https://github.com/mikefarah/yq/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=074a21a002c32a1db3850064ad1fc420083d037951c8102adecfea6c5fd96427
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_AUTO_UPDATE=true
termux_step_make() {
termux_setup_golang
go mod init || :
go mod tidy
go build
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin yq
}