blob: 3fb22dd69e8a165e7605c90fce287414f0d35cc9 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="A modern watch command. Time machine and pager etc."
HOMEPAGE="https://github.com/sachaos/viddy"
SRC_URI="https://github.com/sachaos/viddy/archive/v${PV}.tar.gz -> ${P}.tar.gz
https://moving-innovations.com/~graaff/${P}-deps.tar.xz"
#S="${WORKDIR}/viddy-${PV}"
LICENSE="BSD"
#RESTRICT+=" test"
SLOT="0"
KEYWORDS="~amd64"
BDEPEND="dev-go/gox"
src_compile() {
ego build
}
src_install() {
dobin viddy
dodoc README.md
}
|