mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
36 lines
671 B
Bash
36 lines
671 B
Bash
# Copyright 2022-2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DESCRIPTION="A cli to browse and watch anime."
|
|
HOMEPAGE="https://github.com/pystardust/ani-cli"
|
|
if [[ "${PV}" == *9999* ]]; then
|
|
EGIT_REPO_URI="https://github.com/pystardust/${PN}.git"
|
|
inherit git-r3
|
|
else
|
|
SRC_URI="
|
|
https://github.com/pystardust/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
|
|
"
|
|
S="${WORKDIR}/${P}"
|
|
KEYWORDS="~amd64 ~arm64 ~x86"
|
|
fi
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
DEPEND="
|
|
app-shells/fzf
|
|
media-video/mpv
|
|
net-misc/aria2[adns]
|
|
net-misc/curl
|
|
net-misc/yt-dlp
|
|
"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_install() {
|
|
dobin "${PN}"
|
|
doman "${PN}.1"
|
|
}
|