forked from microsoft/calculator
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #318 from unoplatform/dev/jela/appimage
feat: Generate x64 AppImage
- Loading branch information
Showing
2 changed files
with
141 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
version: 1 | ||
AppDir: | ||
path: ./AppDir | ||
app_info: | ||
id: uno.platform.calculator | ||
name: uno-calculator | ||
icon: 'StoreLogo' | ||
version: !ENV ${GITVERSION_FullSemVer} | ||
exec: usr/bin/uno-calculator/Calculator.Skia.Gtk | ||
exec_args: $@ | ||
runtime: | ||
env: | ||
APPDIR_LIBRARY_PATH: $APPDIR/lib/x86_64-linux-gnu | ||
APPDIR_LIBRARY_PATH: '$APPDIR/usr/lib:$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/2.10.0/loaders' | ||
GTK_THEME: Default | ||
GTK_PATH: $APPDIR/usr/lib/x86_64-linux-gnu/gtk-2.0 | ||
GTK_EXE_PREFIX: $APPDIR/usr/lib/x86_64-linux-gnu | ||
apt: | ||
arch: amd64 | ||
sources: | ||
- sourceline: deb http://archive.ubuntu.com/ubuntu/ focal main restricted | ||
key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3b4fe6acc0b21f32' | ||
- sourceline: deb http://archive.ubuntu.com/ubuntu/ focal-updates main restricted | ||
- sourceline: deb http://archive.ubuntu.com/ubuntu/ focal universe | ||
- sourceline: deb http://archive.ubuntu.com/ubuntu/ focal-updates universe | ||
- sourceline: deb http://archive.ubuntu.com/ubuntu/ focal multiverse | ||
- sourceline: deb http://archive.ubuntu.com/ubuntu/ focal-updates multiverse | ||
- sourceline: deb http://archive.ubuntu.com/ubuntu/ focal-backports main restricted | ||
universe multiverse | ||
- sourceline: deb http://security.ubuntu.com/ubuntu/ focal-security main restricted | ||
- sourceline: deb http://security.ubuntu.com/ubuntu/ focal-security universe | ||
- sourceline: deb http://security.ubuntu.com/ubuntu/ focal-security multiverse | ||
include: | ||
- libgcc-s1 | ||
- libgtk-3-0 | ||
- libgtk-3-bin | ||
- libgtk-3-common | ||
- gtk2-engines-pixbuf | ||
- libcanberra-gtk3-module | ||
#- libgcc-s1 | ||
#- gtk+-3.0 | ||
#- gtk2-engines-pixbuf | ||
exclude: | ||
- hicolor-icon-theme | ||
- humanity-icon-theme | ||
- mono | ||
exclude: [] | ||
files: | ||
exclude: | ||
- usr/share/man | ||
- usr/share/doc/*/README.* | ||
- usr/share/doc/*/changelog.* | ||
- usr/share/doc/*/NEWS.* | ||
- usr/share/doc/*/TODO.* | ||
test: | ||
fedora: | ||
image: appimagecrafters/tests-env:fedora-30 | ||
command: ./AppRun | ||
use_host_x: true | ||
debian: | ||
image: appimagecrafters/tests-env:debian-stable | ||
command: ./AppRun | ||
use_host_x: true | ||
arch: | ||
image: appimagecrafters/tests-env:archlinux-latest | ||
command: ./AppRun | ||
use_host_x: true | ||
centos: | ||
image: appimagecrafters/tests-env:centos-7 | ||
command: ./AppRun | ||
use_host_x: true | ||
ubuntu: | ||
image: appimagecrafters/tests-env:ubuntu-xenial | ||
command: ./AppRun | ||
use_host_x: true | ||
|
||
AppImage: | ||
arch: x86_64 | ||
file_name: !ENV uno-calculator-${GITVERSION_FullSemVer}-x86_64.AppImage | ||
update-information: None | ||
sign-key: None |