-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: https://bugs.gentoo.org/939198 Signed-off-by: Denis Strizhkin <[email protected]>
- Loading branch information
1 parent
6bf2f8c
commit 8cfa488
Showing
2 changed files
with
34 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
DIST ani-cli-4.8.tar.gz 234163 BLAKE2B d7db7e70c67d3f042841ebdb1695ba3614b32a6eccf7bc0e8b5dd1cee6f89b670e18f30ddcae055900b9dc11450abbd78d4bbff11dd23144ebe7b734209071a4 SHA512 fece70b1613e28366dc6716ce02720ca53dfa750fdd6d40a5d292f0e4c242920e5c7fa5f82f51c90ad86f2cdb301ac19628d9a3616f44acc8f208d7d58495476 | ||
DIST ani-cli-4.9.tar.gz 473057 BLAKE2B 978ab41f40b6ddf9d2e2ac77e56de57e1246fbc20af54e950ea2ff0ddee6d02c099bf02804f888154a970ad13e421e392ad74d830f95d00e8806f4ba009196f2 SHA512 55a385dd7e19a5dae9c620a44e77f181c81164bb147b4b7c6a2a0f5a1a2188251eff7638348bb1b764c3beab533432f13ffc54726a50613a889d6372f928c2b5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 -> ${P}.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" | ||
} |