mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 07:49:00 -04:00
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Julien Roy <julien@jroy.ca>
56 lines
1.3 KiB
Bash
56 lines
1.3 KiB
Bash
# Copyright 2023 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit unpacker xdg-utils
|
|
|
|
DESCRIPTION="A cross-platform media center, famous for high quality of audio."
|
|
HOMEPAGE="https://jriver.com/"
|
|
SRC_URI="https://files.jriver-cdn.com/mediacenter/channels/v31/latest/MediaCenter-${PV}-amd64.deb"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="all-rights-reserved"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RESTRICT="strip"
|
|
REQUIRES_EXCLUDE="libcef.so" # Already inside
|
|
|
|
# TODO soon brotli dep will be dropped
|
|
RDEPEND="
|
|
app-arch/brotli
|
|
media-libs/alsa-lib
|
|
media-libs/libglvnd
|
|
x11-libs/gtk+
|
|
x11-libs/pango
|
|
x11-libs/libXrandr
|
|
"
|
|
|
|
QA_PREBUILT="*"
|
|
|
|
src_unpack() {
|
|
unpack_deb ${A}
|
|
}
|
|
|
|
src_install() {
|
|
|
|
# To solve this https://bugs.gentoo.org/915528
|
|
# "
|
|
# * This location is deprecated, it should not be used anymore by new software.
|
|
# * Appdata/Metainfo files should be installed into /usr/share/metainfo directory.
|
|
# * For more details, please see the freedesktop Upstream Metadata guidelines at
|
|
# * https://www.freedesktop.org/software/appstream/docs/chap-Metadata.html
|
|
# "
|
|
# I wrote to upstream https://yabb.jriver.com/interact/index.php/topic,138293.0.html
|
|
mv usr/share/appdata usr/share/metainfo
|
|
|
|
cp -R "${S}"/* "${D}" || die "Installing binary files failed"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_desktop_database_update
|
|
xdg_mimeinfo_database_update
|
|
}
|