-
Notifications
You must be signed in to change notification settings - Fork 3
/
com.github.candiedoperation.ordne.yml
43 lines (36 loc) · 1.51 KB
/
com.github.candiedoperation.ordne.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
# This is the same ID that you've used in meson.build and other files
app-id: com.github.candiedoperation.ordne
# Instead of manually specifying a long list of build and runtime dependencies,
# we can use a convenient pre-made runtime and SDK. For this example, we'll be
# using the runtime and SDK provided by elementary.
runtime: io.elementary.Platform
runtime-version: '6'
sdk: io.elementary.Sdk
# This should match the exec line in your .desktop file and usually is the same
# as your app ID
command: com.github.candiedoperation.ordne
# Here we can specify the kinds of permissions our app needs to run. Since we're
# not using hardware like webcams, making sound, or reading external files, we
# only need permission to draw our app on screen using either X11 or Wayland.
finish-args:
- '--share=ipc'
- '--socket=fallback-x11'
- '--socket=wayland'
# needed for perfers-color-scheme
- '--system-talk-name=org.freedesktop.Accounts'
# needed for libcanberra
- '--socket=pulseaudio'
# This section is where you list all the source code required to build your app.
# If we had external dependencies that weren't included in our SDK, we would list
# them here.
modules:
- name: libcanberra
sources:
- type: archive
url: https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/libcanberra/0.30-7ubuntu2/libcanberra_0.30.orig.tar.xz
sha256: c2b671e67e0c288a69fc33dc1b6f1b534d07882c2aceed37004bf48c601afa72
- name: ordne
buildsystem: meson
sources:
- type: dir
path: .