mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-19 20:13:01 -04:00
24 lines
561 B
Bash
24 lines
561 B
Bash
# Copyright 2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
USE_MPV="rdepend"
|
|
MPV_REQ_USE="lua"
|
|
inherit mpv-plugin
|
|
|
|
COMMIT="d3d7b1d5ed0d2afb3227ec1ef1155a6bd7f6481d"
|
|
MY_P="${PN}-${COMMIT}"
|
|
|
|
DESCRIPTION="A userscript that allows you to play \"up next\"/recommended youtube videos"
|
|
HOMEPAGE="https://github.com/cvzi/mpv-youtube-upnext"
|
|
|
|
SRC_URI="https://github.com/cvzi/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
KEYWORDS="~amd64"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|
|
|
|
MPV_PLUGIN_FILES=( youtube-upnext.lua )
|