summaryrefslogtreecommitdiff
path: root/app-misc/wego/wego-2.4.ebuild
blob: 871a4e9745d102273a52f581cf6bc982b6ddce8c (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
# Copyright 2026 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"
HOMEPAGE="https://github.com/schachmat/wego"
SRC_URI="
	https://github.com/schachmat/${PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz
	https://codeberg.org/ceres-sees-all/guru-distfiles/releases/download/${P}-deps.tar.xz/${P}-deps.tar.xz
"

LICENSE="BSD ISC MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~ppc64"

src_compile() {
	ego build -v -x . || die
}

src_install() {
	dobin wego
	dodoc README.md
}