forked from swl-x/MystiQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAppImageBuilder.yml
114 lines (100 loc) · 2.86 KB
/
AppImageBuilder.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
version: 1
AppDir:
path: AppDir
app_info:
id: info.swlx.mystiq
name: MystiQ
icon: mystiq
version: !ENV ${VERSION}
exec: usr/bin/mystiq
apt:
arch: amd64
sources:
- sourceline: 'deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ bionic main restricted universe multiverse'
key_url: 'http://keyserver.ubuntu.com/pks/lookup?op=get&search=0x3b4fe6acc0b21f32'
- sourceline: 'deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ bionic-updates main restricted universe multiverse'
- sourceline: 'deb [arch=amd64] http://archive.ubuntu.com/ubuntu/ bionic-backports main restricted universe multiverse'
- sourceline: 'deb http://archive.neon.kde.org/user bionic main'
key_url: 'http://archive.neon.kde.org/public.key'
include:
- sox
- ffmpeg
- libqt5qml5
- libqt5svg5
- libqt5opengl5
- libqt5quickwidgets5
- qml-module-qtquick2
- qml-module-qtquick-dialogs
- libqt5multimedia5-plugins
- qml-module-qtmultimedia
- gstreamer1.0-x
- gstreamer1.0-alsa
- gstreamer1.0-plugins-base
- gstreamer1.0-plugins-good
- gstreamer1.0-plugins-bad
- gstreamer1.0-plugins-ugly
- gstreamer1.0-fluendo-mp3
- gstreamer1.0-pulseaudio
- libasound2-plugins
# the following X libs are not resolved by apt
- libxrender1
- libxcursor1
exclude:
# there is no reason to be bundled
- perl
- perl-base
- perl-modules
# graphics sctack (excluded to allow running in system with non-common graphic cards)
- libdrm2
- libgl1
- libgl1-mesa-dri
- libegl1
- libegl1-mesa
# fontconfig (if included the app crashes on archlinux)
- fontconfig
- fontconfig-config
- libfontconfig1
- libfreetype6
files:
exclude:
- usr/lib/x86_64-linux-gnu/gconv
- usr/share/man
- usr/share/doc/*/README.*
- usr/share/doc/*/changelog.*
- usr/share/doc/*/NEWS.*
- usr/share/doc/*/TODO.*
- usr/include
runtime:
generator: wrapper
env:
PATH: '${APPDIR}/usr/bin:${APPDIR}/bin:${PATH}'
APPDIR_LIBRARY_PATH: "$APPDIR/lib/x86_64-linux-gnu:$APPDIR/usr/lib/x86_64-linux-gnu:$APPDIR/usr/lib/x86_64-linux-gnu/pulseaudio"
test:
debian:
image: debian:stable
command: "./AppRun"
use_host_x: True
env:
- QT_DEBUG_PLUGINS=1
arch:
image: archlinux
command: "./AppRun"
use_host_x: True
env:
- QT_DEBUG_PLUGINS=1
fedora:
image: fedora:26
command: "./AppRun"
use_host_x: True
env:
- QT_DEBUG_PLUGINS=1
ubuntu:
image: ubuntu:xenial
command: "./AppRun"
use_host_x: True
env:
- QT_DEBUG_PLUGINS=1
AppImage:
update-information: None
sign-key: None
arch: x86_64