mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-18 23:39:00 -04:00
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Julien Roy <julien@jroy.ca>
101 lines
2.6 KiB
Bash
101 lines
2.6 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_PN="${PN/-bin/}"
|
|
|
|
CHROMIUM_LANGS="
|
|
af am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he hi
|
|
hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr sv
|
|
sw ta te th tr uk ur vi zh-CN zh-TW
|
|
"
|
|
|
|
inherit chromium-2 desktop linux-info unpacker xdg
|
|
|
|
DESCRIPTION="Web version of Tidal running in electron with Hi-Fi support thanks to Widevine."
|
|
HOMEPAGE="https://github.com/Mastermindzh/tidal-hifi"
|
|
SRC_URI="https://github.com/Mastermindzh/tidal-hifi/releases/download/${PV}/tidal-hifi-${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
S="${WORKDIR}/${MY_PN}-${PV}"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
RDEPEND="
|
|
>=app-accessibility/at-spi2-core-2.46.0:2
|
|
dev-libs/expat
|
|
dev-libs/glib:2
|
|
dev-libs/libgcrypt
|
|
dev-libs/nspr
|
|
dev-libs/nss
|
|
media-libs/alsa-lib
|
|
media-libs/fontconfig
|
|
media-libs/mesa[gbm(+)]
|
|
net-print/cups
|
|
sys-apps/dbus
|
|
sys-apps/util-linux
|
|
sys-libs/glibc
|
|
x11-libs/cairo
|
|
x11-libs/libdrm
|
|
x11-libs/gdk-pixbuf:2
|
|
x11-libs/gtk+:3
|
|
x11-libs/libX11
|
|
x11-libs/libXScrnSaver
|
|
x11-libs/libXcomposite
|
|
x11-libs/libXdamage
|
|
x11-libs/libXext
|
|
x11-libs/libXfixes
|
|
x11-libs/libXrandr
|
|
x11-libs/libxcb
|
|
x11-libs/libxkbcommon
|
|
x11-libs/libxshmfence
|
|
x11-libs/pango
|
|
"
|
|
|
|
DESTDIR="/opt/${PN}"
|
|
|
|
QA_PREBUILT="*"
|
|
|
|
CONFIG_CHECK="~USER_NS"
|
|
|
|
src_configure() {
|
|
default
|
|
chromium_suid_sandbox_check_kernel_config
|
|
}
|
|
|
|
src_prepare() {
|
|
default
|
|
# cleanup languages
|
|
pushd "locales/" >/dev/null || die "location change for language cleanup failed"
|
|
chromium_remove_language_paks
|
|
popd >/dev/null || die "location reset for language cleanup failed"
|
|
rm -rf "${S}"/resources/app.asar.unpacked/node_modules/register-scheme/build/node_gyp_bins
|
|
rm -rf "${S}"/resources/app.asar.unpacked/node_modules/abstract-socket/build/node_gyp_bins
|
|
}
|
|
|
|
src_install() {
|
|
doicon -s 256 "${FILESDIR}/${MY_PN}.png"
|
|
|
|
make_desktop_entry "/usr/bin/tidal-hifi" "TIDAL Hi-Fi" ${PN} "Network;AudioVideo;Audio;Video"
|
|
|
|
exeinto "${DESTDIR}"
|
|
|
|
doexe "${MY_PN}" chrome-sandbox libEGL.so libffmpeg.so libGLESv2.so libvk_swiftshader.so
|
|
|
|
insinto "${DESTDIR}"
|
|
doins chrome_100_percent.pak chrome_200_percent.pak icudtl.dat resources.pak snapshot_blob.bin v8_context_snapshot.bin
|
|
insopts -m0755
|
|
doins -r locales resources
|
|
|
|
# Chrome-sandbox requires the setuid bit to be specifically set.
|
|
# see https://github.com/electron/electron/issues/17972
|
|
fowners root "${DESTDIR}/chrome-sandbox"
|
|
fperms 4711 "${DESTDIR}/chrome-sandbox"
|
|
|
|
[[ -x chrome_crashpad_handler ]] && doins chrome_crashpad_handler
|
|
|
|
dosym "${DESTDIR}/${MY_PN}" "/usr/bin/${MY_PN}"
|
|
}
|