-
Notifications
You must be signed in to change notification settings - Fork 65
/
com.github.naxuroqa.venom.json
137 lines (137 loc) · 3.38 KB
/
com.github.naxuroqa.venom.json
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"app-id": "com.github.naxuroqa.venom",
"runtime": "org.gnome.Platform",
"runtime-version": "3.28",
"sdk": "org.gnome.Sdk",
"command": "venom",
"copy-icon": true,
"finish-args": [
"--share=network",
"--socket=x11",
"--share=ipc",
"--socket=wayland",
"--device=dri",
"--socket=pulseaudio",
"--talk-name=ca.desrt.dconf",
"--talk-name=org.freedesktop.Notifications",
"--filesystem=xdg-data/pixmaps/faces:ro",
"--filesystem=xdg-download",
"--device=all"
],
"cleanup-commands": [
"rm -rf /app/bin/{DHT_bootstrap,gspell-app1,enchant*}",
"rm -rf /app/include",
"rm -rf /app/lib/{*.a,*.la,girepository-1.0,pkgconfig}",
"rm -rf /app/lib/enchant-2/{*.a,*.la}",
"rm -rf /app/share/{vala,man,gir-1.0}"
],
"build-options": {
"cflags": "-O3 -DSQLITE_HAS_CODEC",
"cxxflags": "-O3"
},
"modules": [
{
"name": "sqlcipher",
"rm-configure": true,
"config-opts": [
"--enable-tempstore=yes",
"--disable-tcl"
],
"sources": [
{
"type": "git",
"url": "https://github.com/sqlcipher/sqlcipher",
"tag": "v4.0.1",
"commit": "27d58453c6e56c3dd85e02bca379161bc69c746a",
"disable-fsckobjects": true
},
{
"type": "script",
"dest-filename": "autogen.sh",
"commands": [
"AUTOMAKE=\"automake --foreign\" autoreconf -vfi"
]
}
]
},
{
"name": "libsodium",
"sources": [
{
"type": "git",
"url": "https://github.com/jedisct1/libsodium",
"tag": "1.0.17",
"commit": "b732443c442239c2e0184820e9b23cca0de0828c"
}
]
},
{
"name": "toxcore",
"buildsystem": "cmake",
"config-opts": [
"-DCMAKE_BUILD_TYPE=Release",
"-DENABLE_STATIC=OFF"
],
"sources": [
{
"type": "git",
"url": "https://github.com/toktok/c-toxcore",
"tag": "v0.2.9",
"commit": "98b754e1f22220f10196760389371dba6d139c6f"
}
]
},
{
"name": "libgee",
"build-options": {
"env": {
"PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_GIRDIR": "/app/share/gir-1.0",
"PKG_CONFIG_GOBJECT_INTROSPECTION_1_0_TYPELIBDIR": "/app/lib/girepository-1.0"
}
},
"sources": [
{
"type": "git",
"url": "https://gitlab.gnome.org/GNOME/libgee",
"tag": "0.20.1",
"commit": "57e4c8a08d61ab77bbec310a3a1621e6bf3111cb"
}
]
},
{
"name": "enchant",
"sources": [
{
"type": "archive",
"url": "https://github.com/AbiWord/enchant/releases/download/v2.2.3/enchant-2.2.3.tar.gz",
"sha256": "abd8e915675cff54c0d4da5029d95c528362266557c61c7149d53fa069b8076d"
}
]
},
{
"name": "gspell",
"sources": [
{
"type": "git",
"url": "https://gitlab.gnome.org/GNOME/gspell",
"tag": "1.8.1",
"commit": "ba03499234037861e01ce1e83075e8a32b9790f3"
}
]
},
{
"name": "venom",
"builddir": true,
"buildsystem": "meson",
"config-opts": [
"--buildtype=release"
],
"sources": [
{
"type": "git",
"url": "https://github.com/naxuroqa/Venom"
}
]
}
]
}