1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-19 04:27:07 +00:00
termux-packages/packages/dasel/build.sh
Termux Github Actions ac05df01a4 bump(main/dasel): 2.1.0
This commit has been automatically submitted by Github Actions.
2023-01-11 12:35:38 +00:00

21 lines
737 B
Bash

TERMUX_PKG_HOMEPAGE=https://github.com/TomWright/dasel
TERMUX_PKG_DESCRIPTION="Select, put and delete data from JSON, TOML, YAML, XML and CSV files with a single utility"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="2.1.0"
TERMUX_PKG_SRCURL=https://github.com/TomWright/dasel/archive/refs/tags/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=597d5ab3118eb5bd41859a9b134ebaf18855bba3b20f399c7202a2f132563662
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_AUTO_UPDATE=true
termux_step_make() {
termux_setup_golang
mkdir bin
go build -o ./bin -trimpath ./cmd/dasel
}
termux_step_make_install() {
install -Dm700 -t $TERMUX_PREFIX/bin bin/*
install -Dm600 -t $TERMUX_PREFIX/share/doc/$TERMUX_PKG_NAME README.*
}