mirror of
https://github.com/VSCodium/vscodium.git
synced 2026-04-24 20:00:15 +10:00
AppImage support (#108)
This commit is contained in:
committed by
GitHub
parent
f6363a3665
commit
39d4b9c134
@@ -46,6 +46,7 @@ deploy:
|
|||||||
- vscode/.build/linux/deb/amd64/deb/*.deb
|
- vscode/.build/linux/deb/amd64/deb/*.deb
|
||||||
- vscode/.build/linux/rpm/x86_64/*.rpm
|
- vscode/.build/linux/rpm/x86_64/*.rpm
|
||||||
- vscode/.build/linux/deb/arm64/deb/*.deb
|
- vscode/.build/linux/deb/arm64/deb/*.deb
|
||||||
|
- vscode/out/*.AppImage
|
||||||
on:
|
on:
|
||||||
all_branches: true
|
all_branches: true
|
||||||
condition: $SHOULD_BUILD = yes
|
condition: $SHOULD_BUILD = yes
|
||||||
|
|||||||
35
VSCodium-AppImage-Recipe.yml
Normal file
35
VSCodium-AppImage-Recipe.yml
Normal file
@@ -0,0 +1,35 @@
|
|||||||
|
# Based on
|
||||||
|
# https://github.com/AppImage/pkg2appimage/blob/master/recipes/VSCode.yml
|
||||||
|
#
|
||||||
|
# On a Debian/Ubuntu system:
|
||||||
|
# wget -c "https://github.com/AppImage/pkg2appimage/raw/master/pkg2appimage"
|
||||||
|
# bash -ex pkg2appimage VSCodium
|
||||||
|
|
||||||
|
app: VSCodium
|
||||||
|
|
||||||
|
ingredients:
|
||||||
|
packages:
|
||||||
|
- code
|
||||||
|
- libgconf2-4
|
||||||
|
dist: trusty
|
||||||
|
sources:
|
||||||
|
- deb http://archive.ubuntu.com/ubuntu/ trusty main universe
|
||||||
|
script:
|
||||||
|
- pwd
|
||||||
|
- cp ../.build/linux/deb/amd64/deb/*.deb .
|
||||||
|
- ls vscodium_*.deb | cut -d _ -f 2 > VERSION
|
||||||
|
|
||||||
|
script:
|
||||||
|
- sed -i -e 's|/usr/share/vscodium/||g' usr/share/applications/vscodium.desktop
|
||||||
|
- sed -i -e 's|com.visualstudio.code.oss|vscodium|g' usr/share/applications/vscodium.desktop
|
||||||
|
- cp usr/share/applications/vscodium.desktop .
|
||||||
|
- cp usr/share/pixmaps/com.visualstudio.code.oss.png vscodium.png
|
||||||
|
- convert vscodium.png -resize 512x512 usr/share/icons/hicolor/512x512/apps/vscodium.png
|
||||||
|
- convert vscodium.png -resize 256x256 usr/share/icons/hicolor/256x256/apps/vscodium.png
|
||||||
|
- convert vscodium.png -resize 128x128 usr/share/icons/hicolor/128x128/apps/vscodium.png
|
||||||
|
- convert vscodium.png -resize 64x64 usr/share/icons/hicolor/64x64/apps/vscodium.png
|
||||||
|
- convert vscodium.png -resize 48x48 usr/share/icons/hicolor/48x48/apps/vscodium.png
|
||||||
|
- convert vscodium.png -resize 32x32 usr/share/icons/hicolor/32x32/apps/vscodium.png
|
||||||
|
- convert vscodium.png -resize 24x24 usr/share/icons/hicolor/24x24/apps/vscodium.png
|
||||||
|
- convert vscodium.png -resize 22x22 usr/share/icons/hicolor/22x22/apps/vscodium.png
|
||||||
|
- ( cd usr/bin/ ; ln -s ../share/vscodium/vscodium . )
|
||||||
1
build.sh
1
build.sh
@@ -36,6 +36,7 @@ if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
|||||||
npm run gulp -- "vscode-linux-${BUILDARCH}-min"
|
npm run gulp -- "vscode-linux-${BUILDARCH}-min"
|
||||||
npm run gulp -- "vscode-linux-${BUILDARCH}-build-deb"
|
npm run gulp -- "vscode-linux-${BUILDARCH}-build-deb"
|
||||||
npm run gulp -- "vscode-linux-${BUILDARCH}-build-rpm"
|
npm run gulp -- "vscode-linux-${BUILDARCH}-build-rpm"
|
||||||
|
. ../create_appimage.sh
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd ..
|
cd ..
|
||||||
|
|||||||
10
create_appimage.sh
Executable file
10
create_appimage.sh
Executable file
@@ -0,0 +1,10 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
if [[ "$BUILDARCH" == "x64" ]]; then
|
||||||
|
# install a dep needed for this process
|
||||||
|
sudo apt-get install desktop-file-utils
|
||||||
|
|
||||||
|
# download pkg2appimage from github
|
||||||
|
curl -LO "https://github.com/AppImage/pkg2appimage/raw/master/pkg2appimage"
|
||||||
|
|
||||||
|
bash -e pkg2appimage ../VSCodium-AppImage-Recipe.yml
|
||||||
|
fi
|
||||||
Reference in New Issue
Block a user