1d854b7d14
Package-Manager: Portage-3.0.5, Repoman-3.0.1 Signed-off-by: Maciej Barć <xgqt@protonmail.com>
64 lines
1.4 KiB
Bash
64 lines
1.4 KiB
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit desktop pax-utils xdg
|
|
|
|
DESCRIPTION="Open Source Software Binaries of VSCode"
|
|
HOMEPAGE="https://github.com/VSCodium/vscodium"
|
|
SRC_URI="https://github.com/VSCodium/vscodium/releases/download/${PV}/VSCodium-linux-x64-${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
RESTRICT="mirror strip bindist"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="libsecret"
|
|
|
|
DEPEND="
|
|
>=media-libs/libpng-1.2.46:0
|
|
>=x11-libs/gtk+-3.0:3
|
|
x11-libs/cairo
|
|
x11-libs/libXtst
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
>=net-print/cups-2.0.0
|
|
dev-libs/nss
|
|
x11-libs/libXScrnSaver
|
|
x11-libs/libnotify
|
|
libsecret? (
|
|
app-crypt/libsecret[crypt]
|
|
)
|
|
"
|
|
|
|
QA_PRESTRIPPED="
|
|
opt/${PN}/code
|
|
"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
src_install() {
|
|
pax-mark m code
|
|
insinto "/opt/${PN}"
|
|
doins -r *
|
|
dosym "../../opt/${PN}/bin/codium" "/usr/bin/codium-bin"
|
|
dosym "../../opt/${PN}/bin/codium" "/usr/bin/vscodium-bin"
|
|
make_desktop_entry "codium-bin" "Codium-bin" "codium-bin" "Development;IDE"
|
|
newicon "resources/app/resources/linux/code.png" codium-bin.png
|
|
fperms +x "/opt/${PN}/codium"
|
|
fperms +x "/opt/${PN}/bin/codium"
|
|
fperms +x "/opt/${PN}/resources/app/node_modules.asar.unpacked/vscode-ripgrep/bin/rg"
|
|
insinto "/usr/share/licenses/${PN}"
|
|
}
|
|
|
|
pkg_postinst() {
|
|
xdg_desktop_database_update
|
|
xdg_icon_cache_update
|
|
}
|
|
|
|
pkg_postrm() {
|
|
xdg_desktop_database_update
|
|
xdg_icon_cache_update
|
|
}
|