app-misc/ani-cli: add 4.10

Signed-off-by: Denis Strizhkin <strdenis02@gmail.com>
This commit is contained in:
Denis Strizhkin
2025-05-02 18:55:30 +03:00
parent dccaf10489
commit 550b3b9828
2 changed files with 36 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST ani-cli-4.10.tar.gz 474063 BLAKE2B 57361f3d7e7b301e825a729d6abd81978165b721487ed94a1ae16cc9f3563763239239b093b853c249e8be119a83bdb422afd6c68d7b36bdc1168ba9c9dd3ad3 SHA512 785ea92cd6d9470a9d722638f766bc176644962b7fde85e8dd0bf4ba38c8e538b00ca1a62e06b2b2626bfdb134856b4e6779912e667a001f6155777ff7ecd439
DIST ani-cli-4.9.tar.gz 473057 BLAKE2B 978ab41f40b6ddf9d2e2ac77e56de57e1246fbc20af54e950ea2ff0ddee6d02c099bf02804f888154a970ad13e421e392ad74d830f95d00e8806f4ba009196f2 SHA512 55a385dd7e19a5dae9c620a44e77f181c81164bb147b4b7c6a2a0f5a1a2188251eff7638348bb1b764c3beab533432f13ffc54726a50613a889d6372f928c2b5

View File

@@ -0,0 +1,35 @@
# 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
net-misc/curl
net-misc/yt-dlp
"
RDEPEND="${DEPEND}"
src_install() {
dobin "${PN}"
doman "${PN}.1"
}