-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorg.example.App.json
More file actions
100 lines (100 loc) · 3.08 KB
/
org.example.App.json
File metadata and controls
100 lines (100 loc) · 3.08 KB
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
{
"app-id" : "org.example.App",
"runtime" : "org.freedesktop.Platform",
"runtime-version" : "21.08",
"sdk" : "org.freedesktop.Sdk",
"command" : "iup_example",
"finish-args" : [
"--share=network",
"--share=ipc",
"--socket=fallback-x11",
"--device=dri",
"--socket=wayland"
],
"cleanup" : [
"/include",
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"*.la",
"*.a"
],
"modules": [
{
"name": "lua",
"buildsystem": "simple",
"build-commands": [
"pwd",
"make linux-readline PREFIX=/app",
"make test",
"make install INSTALL_TOP=/app"
],
"sources": [
{
"type": "archive",
"url": "http://www.lua.org/ftp/lua-5.4.4.tar.gz",
"sha256": "164c7849653b80ae67bec4b7473b884bf5cc8d2dca05653475ec2ed27b9ebf61"
}
]
},
{
"name": "iup",
"buildsystem": "simple",
"build-commands": [
"pwd",
"tar -xf iup-3.30_Linux54_64_lib.tar.gz; rm iup-3.30_Linux54_64_lib.tar.gz",
"patch < 0001-tec_uname.patch; rm 0001-tec_uname.patch",
"./install"
],
"sources": [
{
"type": "file",
"url": "https://sourceforge.net/projects/iup/files/3.30/Linux%20Libraries/iup-3.30_Linux54_64_lib.tar.gz",
"sha256": "7f97b70f8bbf1a59f6b3dd002a381eebacd51855b28dac69f95c9a3d90cbd65a"
},
{
"type": "file",
"path": "0001-tec_uname.patch"
}
]
},
{
"name": "iuplua",
"buildsystem": "simple",
"build-commands": [
"pwd",
"tar -xf iup-3.30-Lua54_Linux54_64_lib.tar.gz; rm iup-3.30-Lua54_Linux54_64_lib.tar.gz",
"patch < 0001-tec_uname.patch; rm 0001-tec_uname.patch",
"./install"
],
"sources": [
{
"type": "file",
"url": "https://sourceforge.net/projects/iup/files/3.30/Linux%20Libraries/Lua54/iup-3.30-Lua54_Linux54_64_lib.tar.gz",
"sha256": "dfed42a9d7957e57a3dc65d2d6728b741f4bb1af4fb5a714134e8ea22991f766"
},
{
"type": "file",
"path": "0001-tec_uname.patch"
}
]
},
{
"name" : "iup_example",
"builddir" : true,
"buildsystem" : "meson",
"sources" : [
{
"type" : "git",
"url" : "file:///var/home/syabro/Projects/iup_example"
}
]
}
],
"build-options" : {
"env" : { }
}
}