diff options
author | turret <turret@duck.com> | 2023-05-31 11:58:03 -0500 |
---|---|---|
committer | turret <turret@duck.com> | 2023-05-31 11:58:03 -0500 |
commit | c14269fcf6f11c2478d26c48b53c4552880b45c9 (patch) | |
tree | 4e9ea7c72697917e2fdfe6943df03b6049f2b017 /app-misc/ani-cli/ani-cli-4.3.ebuild | |
parent | 232c37aab3dda72e8d6a134637f5c5e8c394913f (diff) | |
download | portage-overlay-c14269fcf6f11c2478d26c48b53c4552880b45c9.tar.gz portage-overlay-c14269fcf6f11c2478d26c48b53c4552880b45c9.tar.bz2 portage-overlay-c14269fcf6f11c2478d26c48b53c4552880b45c9.zip |
ani-cli version bump, 9999
Diffstat (limited to 'app-misc/ani-cli/ani-cli-4.3.ebuild')
-rw-r--r-- | app-misc/ani-cli/ani-cli-4.3.ebuild | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/app-misc/ani-cli/ani-cli-4.3.ebuild b/app-misc/ani-cli/ani-cli-4.3.ebuild new file mode 100644 index 0000000..89d651b --- /dev/null +++ b/app-misc/ani-cli/ani-cli-4.3.ebuild @@ -0,0 +1,40 @@ +# Copyright 2022 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/" +#SRC_URI="https://github.com/pystardust/$PN/archive/refs/tags/v$PV.tar.gz -> $P.tar.gz" +RESTRICT="mirror" + +if [[ "${PV}" == *9999* ]]; then + EGIT_REPO_URI="https://github.com/pystardust/ani-cli.git" + inherit git-r3 +else + SRC_URI="https://github.com/pystardust/ani-cli/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3" +SLOT="0" +#KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND=" + app-alternatives/sh + sys-apps/grep + sys-apps/sed + net-misc/curl + media-video/mpv + net-misc/aria2 + media-video/ffmpeg + app-shells/fzf" + +RDEPEND="${DEPEND}" +BDEPEND="" + +src_install() { + dobin ani-cli + doman ani-cli.1 +} |