1
0
mirror of synced 2024-07-03 09:39:03 +02:00
TheChymera-overlay/app-misc/ansiweather/ansiweather-1.18.0.ebuild
Horea Christian 23344c955d
app-misc/ansiweather: keyword 1.18.0 for ~x86
Signed-off-by: Horea Christian <chr@chymera.eu>
2022-08-31 16:20:36 -04:00

32 lines
617 B
Bash

# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Weather in terminal, with ANSI colors and Unicode symbols"
HOMEPAGE="https://github.com/fcambus/ansiweather"
SRC_URI="https://github.com/fcambus/ansiweather/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND=""
RDEPEND="
app-misc/jq
sys-devel/bc
"
BDEPEND=""
src_install() {
dobin "${PN}"
doman "${PN}.1"
einstalldocs
dodoc 'ansiweatherrc.example'
insinto /usr/share/zsh/site-functions
newins ansiweather.plugin.zsh -ansiweather
}