1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-26 15:57:13 +00:00
termux-packages/packages/yq/build.sh
Termux Github Actions fbeab3b2aa bump(main/yq): 4.30.8
This commit has been automatically submitted by Github Actions.
2023-01-15 01:06:11 +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.30.8"
TERMUX_PKG_SRCURL=https://github.com/mikefarah/yq/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=aaf6c9f37968970413b8a6daf0b313a86efd1b8e3e5959e527b50636508eb776
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
}