1
0
mirror of https://github.com/termux/termux-packages synced 2024-06-19 06:07:07 +00:00
termux-packages/packages/dasel/build.sh
Termux Github Actions 2d5ced3d8f bump(main/dasel): 2.3.3
This commit has been automatically submitted by Github Actions.
2023-05-31 12:10:06 +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.3.3"
TERMUX_PKG_SRCURL=https://github.com/TomWright/dasel/archive/refs/tags/v$TERMUX_PKG_VERSION.tar.gz
TERMUX_PKG_SHA256=1c94d38862308d0610cd9fa251ea70ab9800f35bf5e81d59fb924cd42e23d990
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.*
}