blob: 6c200a35b77de37e3fdb8b37a85ff8f7f7ddddce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit edo go-module shell-completion
DESCRIPTION="Feature-rich terminal pager"
HOMEPAGE="https://github.com/noborus/ov"
SRC_URI="https://github.com/noborus/${PN}/releases/download/v${PV}/${P}.tar.gz"
LICENSE="MIT Apache-2.0 BSD-2 BSD MPL-2.0"
SLOT="0"
KEYWORDS="~amd64"
src_compile() {
ego build -v -x -o ${PN} -ldflags="-X main.Version=${PV}"
edo ./ov --config ov.yaml --completion fish > ov.fish
edo ./ov --config ov.yaml --completion bash > ov.bash
edo ./ov --config ov.yaml --completion zsh > ov.zsh
}
src_install() {
dodoc README.md ov{,-less}.yaml
dobin ov
newbashcomp "${PN}.bash" "${PN}"
dofishcomp "${PN}.fish"
newzshcomp "${PN}.zsh" "_${PN}"
}
src_test() {
ego test $(ego list ./... | grep -v /vendor/)
}
|