-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcom.github.dbhowell.peeq.yml
61 lines (56 loc) · 2.07 KB
/
com.github.dbhowell.peeq.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
# This is the same ID that you've used in meson.build and other files
app-id: com.github.dbhowell.peeq
# 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.dbhowell.peeq
# 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'
- '--share=network'
- '--filesystem=home'
- '--system-talk-name=org.freedesktop.Accounts'
# 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: gtksourceview
sources:
- type: archive
url: https://download.gnome.org/sources/gtksourceview/3.24/gtksourceview-3.24.11.tar.xz
sha256: 691b074a37b2a307f7f48edc5b8c7afa7301709be56378ccf9cc9735909077fd
- name: libxml2
build-options:
config-opts:
- '--with-python=no'
sources:
- type: archive
url: http://xmlsoft.org/sources/libxml2-2.9.12.tar.gz
md5: f433a39be087a9f0b197eb2307ad9f75
- name: postgresql-13.3
build-options:
config-opts:
- '--with-python=no'
- '--with-perl=no'
- '--with-libxml'
- '--with-openssl'
- '--libdir=/app/lib'
- '--includedir=/app/include/postgresql'
sources:
- type: archive
url: https://ftp.postgresql.org/pub/source/v13.3/postgresql-13.3.tar.gz
sha256: 0b54a8a68dbfaf5dcddd89eb3922740143df50fbea02fefda8de743d8af99516
- name: peeq
buildsystem: meson
sources:
- type: dir
path: .