mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-07-11 08:03:16 -04:00
Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Huang Rui <vowstar@gmail.com>
59 lines
1.0 KiB
Bash
59 lines
1.0 KiB
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI="7"
|
|
|
|
GIT_PN="KikoPlay"
|
|
|
|
LUA_COMPAT=( lua5-3 )
|
|
|
|
inherit lua-single qmake-utils xdg
|
|
|
|
DESCRIPTION="KikoPlay is a full-featured danmu player"
|
|
HOMEPAGE="
|
|
https://kikoplay.fun
|
|
https://github.com/Protostars/KikoPlay
|
|
"
|
|
|
|
if [[ "${PV}" == "9999" ]] ; then
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/Protostars/${GIT_PN}.git"
|
|
else
|
|
SRC_URI="https://github.com/Protostars/${GIT_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~ppc64 ~s390 ~x86"
|
|
S="${WORKDIR}/${GIT_PN}-${PV}"
|
|
fi
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
|
|
RDEPEND="
|
|
${LUA_DEPS}
|
|
dev-libs/qhttpengine:5
|
|
dev-qt/qtconcurrent:5
|
|
dev-qt/qtcore:5
|
|
dev-qt/qtgui:5
|
|
dev-qt/qtnetwork:5
|
|
dev-qt/qtsql:5
|
|
dev-qt/qtwidgets:5
|
|
media-video/mpv[libmpv,-lua]
|
|
net-misc/aria2
|
|
"
|
|
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
src_configure() {
|
|
eqmake5 PREFIX="${EPREFIX}/usr"
|
|
}
|
|
|
|
src_install() {
|
|
# Can't use default, set INSTALL_ROOT
|
|
emake INSTALL_ROOT="${D}" install
|
|
}
|