27 lines
812 B
Bash
27 lines
812 B
Bash
# Template file for 'ov'
|
|
pkgname=ov
|
|
version=0.38.0
|
|
revision=1
|
|
build_style=go
|
|
build_helper=qemu
|
|
go_import_path=github.com/noborus/ov
|
|
go_ldflags="-X main.Version=${version} -X main.Revision=none"
|
|
short_desc="Feature-rich terminal-based text viewer"
|
|
maintainer="Bnyro <bnyro@tutanota.com>"
|
|
license="MIT"
|
|
homepage="https://noborus.github.io/ov/"
|
|
changelog="https://github.com/noborus/ov/releases"
|
|
distfiles="https://github.com/noborus/ov/archive/refs/tags/v${version}.tar.gz"
|
|
checksum=e60ffd00d0e53047dc7e2b17597c0d0d5a27e1bafa12bc470b087deb7f3c166a
|
|
|
|
post_install() {
|
|
local ov="${DESTDIR}/usr/bin/ov"
|
|
for shell in bash fish zsh; do
|
|
vtargetrun ${ov} --completion ${shell} > ov.${shell}
|
|
vcompletion ov.${shell} ${shell}
|
|
done
|
|
vlicense LICENSE
|
|
vsconf ov.yaml config.yaml
|
|
vsconf ov-less.yaml config-less.yaml
|
|
}
|