forked from Pingus/pingus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
org.seul.pingus.Pingus.json
72 lines (72 loc) · 2.19 KB
/
org.seul.pingus.Pingus.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
{
"app-id": "org.seul.pingus.Pingus",
"runtime": "org.freedesktop.Platform",
"runtime-version": "1.6",
"sdk": "org.freedesktop.Sdk",
"rename-icon": "pingus",
"rename-desktop-file": "pingus.desktop",
"rename-appdata-file": "pingus.appdata.xml",
"finish-args": [
"--device=all",
"--share=ipc",
"--socket=x11",
"--socket=pulseaudio",
"--socket=wayland"
],
"modules": [
{
"name": "jsoncpp",
"buildsystem": "cmake-ninja",
"config-opts": [
"-DCMAKE_BUILD_TYPE=Release",
"-DCMAKE_INSTALL_PREFIX:PATH=/app"
],
"sources": [
{
"type": "archive",
"url": "https://github.com/open-source-parsers/jsoncpp/archive/1.8.4.tar.gz",
"sha256": "c49deac9e0933bcb7044f08516861a2d560988540b23de2ac1ad443b219afdb6"
}
],
"cleanup": [
"/include",
"/lib/*.a",
"/lib/pkgconfig"
]
},
{
"name": "boost",
"buildsystem": "simple",
"build-commands": [
"./bootstrap.sh --prefix=/app --with-libraries=system,filesystem,signals",
"./b2 install"
],
"sources": [
{
"type": "archive",
"url": "https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.bz2",
"sha256": "5721818253e6a0989583192f96782c4a98eb6204965316df9f5ad75819225ca9"
}
],
"cleanup": [
"/include",
"/lib/*.a"
]
},
{
"name": "pingus",
"buildsystem": "cmake-ninja",
"config-opts": [
"-DCMAKE_BUILD_TYPE=Release",
"-DCMAKE_INSTALL_PREFIX:PATH=/app"
],
"sources": [
{
"type": "git",
"url": "https://gitlab.com/pingus/pingus.git",
"branch": "master"
}
]
}
]
}