-
Notifications
You must be signed in to change notification settings - Fork 1
/
com.google.Earth.json
52 lines (41 loc) · 1.25 KB
/
com.google.Earth.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
{
"app-id": "com.google.Earth",
"branch": "basic",
"runtime": "org.kde.Platform",
"runtime-version": "5.12",
"sdk": "org.kde.Sdk",
"finish-args": [
"--socket=x11",
"--share=network",
"--share=ipc",
"--device=dri"
],
"command": "google-earth-pro",
"modules": [
{
"name": "google-earth",
"buildsystem": "simple",
"build-commands": [
"ar x google-earth-pro-stable_current_amd64.deb",
"tar xf data.tar.xz",
"rm -f control.tar.gz data.tar.xz debian-binary",
"cp -r opt/google/earth/pro/* /app",
"mkdir -p /app/bin",
"install googleearth.sh /app/bin/google-earth-pro"
],
"sources" : [
{
"type": "script",
"dest-filename": "googleearth.sh",
"commands": [
"exec /app/googleearth-bin"
]
},
{
"type": "file",
"path": "google-earth-pro-stable_current_amd64.deb"
}
]
}
]
}