app-misc/ani-cli: add 4.8 drop 4.7,4.4 (no longer work)

Signed-off-by: Denis Strizhkin <strdenis02@gmail.com>
This commit is contained in:
Denis Strizhkin
2024-02-25 14:49:02 +03:00
parent 29c3e8f3b9
commit c46fe5ef4f
3 changed files with 1 additions and 37 deletions

View File

@@ -0,0 +1,33 @@
# 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
"
S="${WORKDIR}/${P}"
KEYWORDS="~amd64 ~arm64 ~x86"
fi
LICENSE="GPL-3"
SLOT="0"
DEPEND="
media-video/mpv
app-shells/fzf
media-video/ffmpeg
net-misc/aria2"
RDEPEND="${DEPEND}"
src_install() {
dobin "${PN}"
doman "${PN}.1"
}