25 lines
856 B
Bash
25 lines
856 B
Bash
# Template file for 'dasel'
|
|
pkgname=dasel
|
|
version=1.27.3
|
|
revision=1
|
|
build_style=go
|
|
build_helper=qemu
|
|
go_import_path=github.com/tomwright/dasel
|
|
go_package="${go_import_path}/cmd/dasel"
|
|
go_ldflags="-X ${go_import_path}/internal.Version=${version}"
|
|
short_desc="Query and modify data structures using selector strings"
|
|
maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://daseldocs.tomwright.me/"
|
|
changelog="https://raw.githubusercontent.com/TomWright/dasel/master/CHANGELOG.md"
|
|
distfiles="https://github.com/TomWright/dasel/archive/v${version}.tar.gz"
|
|
checksum=1dfd0bf372ab252931adc636887c1d34a75e9ac767b5e6baabf9fd91fdfa15a6
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
for shell in bash fish zsh; do
|
|
vtargetrun ${DESTDIR}/usr/bin/dasel completion ${shell} > completions.${shell}
|
|
vcompletion completions.${shell} ${shell}
|
|
done
|
|
}
|