mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-12 16:43:17 -04:00
Signed-off-by: Lucas Carratalá Del Toro <j327aq10@anonaddy.me> Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Lucas Carratalá Del Toro <j327aq10@anonaddy.me>
27 lines
495 B
Bash
27 lines
495 B
Bash
# 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"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="media-video/mpv
|
|
dev-libs/openssl
|
|
net-misc/curl
|
|
media-video/ffmpeg"
|
|
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND=""
|
|
|
|
src_install() {
|
|
dobin ani-cli
|
|
|
|
}
|