1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-19 12:17:08 +00:00
termux-packages/packages/dasel/build.sh
Termux Github Actions 0911231d9e bump(main/dasel): 2.5.0
This commit has been automatically submitted by Github Actions.
2023-11-28 12:11:48 +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.5.0"
TERMUX_PKG_SRCURL=https://github.com/TomWright/dasel/archive/refs/tags/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=0e4ec875912a3ede0b84b381b14b64293c218fb9cf1472dd085bcccd1ab097a1
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.*
}