-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathorg.supertuxproject.SuperTux.json
108 lines (108 loc) · 3.57 KB
/
org.supertuxproject.SuperTux.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
{
"app-id": "org.supertuxproject.SuperTux",
"runtime": "org.freedesktop.Platform",
"runtime-version": "24.08",
"sdk": "org.freedesktop.Sdk",
"command": "supertux2",
"rename-icon": "supertux2",
"rename-desktop-file": "supertux2.desktop",
"rename-appdata-file": "supertux2.appdata.xml",
"finish-args":
[
"--socket=wayland",
"--socket=fallback-x11",
"--share=ipc",
"--socket=pulseaudio",
"--share=network",
"--device=all",
"--env=SDL_VIDEODRIVER=wayland,x11"
],
"cleanup":
[
"/include",
"/lib/pkgconfig",
"/share/aclocal",
"*.la",
"*.a"
],
"modules": [
{
"name": "fribidi",
"sources":
[
{
"type": "archive",
"url": "https://github.com/fribidi/fribidi/releases/download/v1.0.16/fribidi-1.0.16.tar.xz",
"sha256": "1b1cde5b235d40479e91be2f0e88a309e3214c8ab470ec8a2744d82a5a9ea05c"
}
]
},
{
"name": "raqm",
"buildsystem": "meson",
"sources": [
{
"type": "archive",
"url": "https://github.com/HOST-Oman/libraqm/releases/download/v0.10.2/raqm-0.10.2.tar.xz",
"sha256": "3e936f2c4e585c3168dbe121fcb7d6c55702027c68e491076381da5c4060559c"
}
]
},
"shared-modules/glu/glu-9.json",
"shared-modules/glew/glew.json",
{
"name": "boost",
"buildsystem": "simple",
"sources": [
{
"type": "archive",
"url": "https://archives.boost.io/release/1.87.0/source/boost_1_87_0.tar.bz2",
"sha256": "af57be25cb4c4f4b413ed692fe378affb4352ea50fbe294a11ef548f4d527d89"
}
],
"build-commands": [
"./bootstrap.sh --prefix=/app --with-libraries=date_time,filesystem,locale",
"./b2 headers",
"./b2 install"
]
},
{
"name": "glm",
"buildsystem": "cmake-ninja",
"sources": [
{
"type": "archive",
"url": "https://github.com/g-truc/glm/archive/refs/tags/1.0.1.tar.gz",
"sha256": "9f3174561fd26904b23f0db5e560971cbf9b3cbda0b280f04d5c379d03bf234c"
}
]
},
{
"name": "supertux",
"buildsystem": "cmake",
"config-opts": [
"-DINSTALL_SUBDIR_SHARE=share/supertux2",
"-DINSTALL_SUBDIR_BIN=bin",
"-DCMAKE_BUILD_TYPE=Release",
"-DIS_SUPERTUX_RELEASE=ON"
],
"sources": [
{
"type": "git",
"url": "https://github.com/SuperTux/supertux.git",
"disable-shallow-clone": true,
"commit": "v0.6.3"
},
{
"type": "patch",
"path": "supertux-build-fixes.patch"
},
{
"//": "Remember to delete this patch when the next SuperTux version gets released, as the appdata fix has also been merged into SuperTux's source code: https://github.com/SuperTux/supertux/pull/2668",
"type": "patch",
"path": "supertux-appdata.patch"
}
]
}
]
}