33 lines
1.0 KiB
Bash
33 lines
1.0 KiB
Bash
# Template file for 'sq'
|
|
pkgname=sq
|
|
version=0.42.1
|
|
revision=1
|
|
build_style=go
|
|
go_import_path="github.com/neilotoole/sq"
|
|
go_ldflags="-X ${go_import_path}/cli/buildinfo.Version=v${version}"
|
|
go_build_tags="libsqlite3"
|
|
makedepends="sqlite-devel"
|
|
short_desc="CLI tool that provides jq-style access to structured data sources"
|
|
maintainer="icp <pangolin@vivaldi.net>"
|
|
license="MIT"
|
|
homepage="https://sq.io"
|
|
changelog="https://raw.githubusercontent.com/neilotoole/sq/master/CHANGELOG.md"
|
|
distfiles="https://github.com/neilotoole/sq/archive/refs/tags/v${version}.tar.gz
|
|
https://github.com/neilotoole/sq/releases/download/v${version}/sq-${version}-amd64-amd64.tar.gz"
|
|
checksum="e050b32155f66a8b7413893e08cd1d8e3bd704f16e624896bdcd11267657b1eb
|
|
7d518570e4e82f5c17ea0dc93b23a5ee6fd866a7f7b9cf456f90f3e43aa97a52"
|
|
conflicts="squirrel sequoia-sq"
|
|
|
|
post_extract() {
|
|
mv sq-${version}/* .
|
|
}
|
|
|
|
post_install() {
|
|
for shell in bash fish zsh; do
|
|
vcompletion "completions/sq.${shell}" "${shell}"
|
|
done
|
|
|
|
vman manpages/sq.1.gz
|
|
vlicense LICENSE
|
|
}
|