-
Notifications
You must be signed in to change notification settings - Fork 4
/
com.github.syfds.soundy.yml
76 lines (64 loc) · 2.09 KB
/
com.github.syfds.soundy.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
app-id: com.github.syfds.soundy
# 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.syfds.soundy
# 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'
- '--share=network'
- '--socket=fallback-x11'
- '--socket=wayland'
- '--system-talk-name=org.freedesktop.Avahi'
# 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: python-dbus
buildsystem: simple
build-commands:
- python3 setup.py install --prefix=/app --root=/
sources:
- type: archive
url: "https://dbus.freedesktop.org/releases/dbus-python/dbus-python-1.2.16.tar.gz"
sha256: 11238f1d86c995d8aed2e22f04a1e3779f0d70e587caffeab4857f3c662ed5a4
- name: libnss-mdns
buildsystem: autotools
cleanup:
- '*'
sources:
- type: git
url: https://github.com/lathiat/nss-mdns
tag: v0.14.1
- name: avahi
buildsystem: autotools
config-opts:
- '--with-distro=none'
- '--disable-libdaemon'
- '--disable-libevent'
- '--disable-core-docs'
- '--disable-manpages'
- '--disable-mono'
- '--disable-qt3'
- '--disable-qt4'
- '--disable-qt5'
- '--enable-dbus'
- '--enable-compat-libdns_sd'
cleanup:
- /bin
sources:
- type: git
url: https://github.com/lathiat/avahi
tag: v0.8
- name: soundy
buildsystem: meson
sources:
- type: dir
path: .