mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 15:59:00 -04:00
73 lines
1.6 KiB
Bash
73 lines
1.6 KiB
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_PN="vesktop"
|
|
|
|
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="All-in-one voice and text chat for gamers with Vencord Preinstalled"
|
|
HOMEPAGE="https://github.com/Vencord/Vesktop/"
|
|
SRC_URI="https://github.com/Vencord/Vesktop/releases/download/v${PV}/${MY_PN}-${PV}.tar.gz -> ${MY_PN}.tar.gz"
|
|
S="${WORKDIR}/${MY_PN}-${PV}"
|
|
|
|
LICENSE="GPL-3+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="libnotify"
|
|
RESTRICT="bindist mirror strip test"
|
|
|
|
DEPEND="
|
|
libnotify? ( x11-libs/libnotify )
|
|
x11-misc/xdg-utils
|
|
"
|
|
|
|
BDEPEND="
|
|
dev-vcs/git
|
|
"
|
|
|
|
DESTDIR="/opt/${PN}"
|
|
|
|
QA_PREBUILT="*"
|
|
|
|
CONFIG_CHECK="~USER_NS"
|
|
|
|
src_configure() {
|
|
default
|
|
chromium_suid_sandbox_check_kernel_config
|
|
}
|
|
|
|
src_install() {
|
|
|
|
doicon -s 256 "${FILESDIR}/vesktop-bin.png"
|
|
domenu "${FILESDIR}/vesktop-bin.desktop"
|
|
|
|
exeinto "${DESTDIR}"
|
|
|
|
doexe vesktop chrome-sandbox libEGL.so libffmpeg.so libGLESv2.so libvk_swiftshader.so libvulkan.so.1
|
|
|
|
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
|
|
|
|
fowners root "${DESTDIR}/chrome-sandbox"
|
|
fperms 4711 "${DESTDIR}/chrome-sandbox"
|
|
|
|
[[ -x chrome_crashpad_handler ]] && doins chrome_crashpad_handler
|
|
|
|
dosym "${DESTDIR}/vesktop" "/usr/bin/vesktop-bin"
|
|
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_pkg_postinst
|
|
}
|