70 lines
2.7 KiB
Bash
70 lines
2.7 KiB
Bash
# Template file for 'vscode'
|
|
pkgname=vscode
|
|
version=1.53.2
|
|
revision=1
|
|
_electronver=9.4.1
|
|
hostmakedepends="pkg-config python nodejs yarn tar git"
|
|
makedepends="libxkbfile-devel libsecret-devel electron9"
|
|
depends="libXtst libxkbfile nss dejavu-fonts-ttf xdg-utils ripgrep electron9"
|
|
short_desc="Microsoft Code for Linux"
|
|
maintainer="shizonic <realtiaz@gmail.com>"
|
|
license="MIT"
|
|
homepage="https://code.visualstudio.com/"
|
|
distfiles="https://github.com/Microsoft/vscode/archive/${version}.tar.gz"
|
|
checksum=d83ec31b76815aaccb52ed10eb26a134563871f413ed21e8fe456ed89de500aa
|
|
patch_args="-Np1"
|
|
|
|
if [ "$XBPS_TARGET_WORDSIZE" = "32" ]; then
|
|
broken="FATAL ERROR: CALL_AND_RETRY_LAST Allocation failed - JavaScript heap out of memory"
|
|
fi
|
|
|
|
# avoid downloading electron binaries for target platform; we use
|
|
# the system electron, and downloading does not work for all archs
|
|
export ELECTRON_SKIP_BINARY_DOWNLOAD=1
|
|
|
|
do_configure() {
|
|
# Use yarn to install dependencies
|
|
echo "" > build/npm/preinstall.js
|
|
|
|
# redirect telemetry urls to 0.0.0.0
|
|
# src: vscodium/undo_telemetry.sh
|
|
_TELEMETRY_URLS="(dc\.services\.visualstudio\.com)|(vortex\.data\.microsoft\.com)"
|
|
_REPLACEMENT="s/$_TELEMETRY_URLS/0\.0\.0\.0/g"
|
|
grep -rl --exclude-dir=.git -E $_TELEMETRY_URLS | xargs sed -i -E $_REPLACEMENT
|
|
|
|
# set used electron version
|
|
sed -i "s/^target .*/target \"${_electronver}\"/" .yarnrc
|
|
}
|
|
|
|
do_build() {
|
|
# The default memory limit may be too low for current versions of node
|
|
# to successfully build vscode. This sets it to 4GB, but
|
|
# change this number if it still doesn't work for your system.
|
|
_mem_limit="--max_old_space_size=4095"
|
|
|
|
export NODE_OPTIONS="${_mem_limit}"
|
|
/usr/lib/node_modules/npm/bin/node-gyp-bin/node-gyp install \
|
|
--target=$_electronver \
|
|
--tarball=/usr/include/electron${_electronver%%.*}/node_headers.tar.gz
|
|
yarn install --ignore-engines --frozen-lockfile --arch=x64
|
|
export CFLAGS="$CFLAGS -I/usr/include/node"
|
|
yarn run gulp vscode-linux-x64-min
|
|
}
|
|
|
|
do_install() {
|
|
vmkdir usr/lib/code-oss
|
|
vcopy ../VSCode-linux-x64/resources usr/lib/code-oss
|
|
vcopy ../VSCode-linux-x64/bin usr/lib/code-oss
|
|
vmkdir usr/bin
|
|
ln -sf /usr/lib/code-oss/bin/code-oss ${DESTDIR}/usr/bin/
|
|
vmkdir usr/share/applications
|
|
ln -sf /usr/lib/code-oss/resources/app/resources/linux/code.desktop ${DESTDIR}/usr/share/applications/code-oss.desktop
|
|
vmkdir usr/share/pixmaps
|
|
ln -sf /usr/lib/code-oss/resources/app/resources/linux/code.png ${DESTDIR}/usr/share/pixmaps/code-oss.png
|
|
ln -sf /usr/bin/rg ${DESTDIR}/usr/lib/code-oss/resources/app/node_modules.asar.unpacked/vscode-ripgrep/bin/rg
|
|
vsed \
|
|
-e "s|ELECTRON=.*|ELECTRON=/usr/lib/electron${_electronver%%.*}/electron|g" \
|
|
-e 's|"$CLI"|"$CLI" --app="${VSCODE_PATH}/resources/app"|g' \
|
|
-i "$DESTDIR"/usr/lib/code-oss/bin/code-oss
|
|
vlicense LICENSE.txt
|
|
}
|