guru/media-sound/jriver/jriver-31.0.83.ebuild
Lucio Sauer fdef68f83f
media-sound/*: fix variable order
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
Signed-off-by: Julien Roy <julien@jroy.ca>
2024-05-14 16:37:54 -04:00

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
}