mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 07:49:00 -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="ba6d9ff95347bbf2d577ace2e2c46caa823a8a6a"
|
|
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 )
|