Files
guru/app-misc/wego/wego-2.2.ebuild
David Roman 042a0246f5 app-misc/wego: add 2.2
Signed-off-by: David Roman <davidroman96@gmail.com>
2023-10-05 17:10:51 +02:00

24 lines
541 B
Bash

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit go-module
DESCRIPTION="Wego is a weather client for the terminal"
SRC_URI="https://github.com/schachmat/wego/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
SRC_URI+=" https://gentoo.kropotkin.rocks/go-pkgs/${P}-vendor.tar.xz"
HOMEPAGE="https://github.com/schachmat/wego"
LICENSE="BSD ISC MIT"
SLOT="0"
KEYWORDS="~amd64"
src_compile() {
ego build -v -x -o wego || die
}
src_install() {
dobin wego
dodoc README.md
}