-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathdev.heppen.webapps.json
More file actions
91 lines (91 loc) · 3.21 KB
/
dev.heppen.webapps.json
File metadata and controls
91 lines (91 loc) · 3.21 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
{
"app-id": "dev.heppen.webapps",
"runtime": "org.gnome.Platform",
"runtime-version": "49",
"sdk": "org.gnome.Sdk",
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.rust-stable"
],
"base": "com.system76.Cosmic.BaseApp",
"base-version": "stable",
"command": "dev.heppen.webapps",
"finish-args": [
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--device=dri",
"--share=network",
"--filesystem=xdg-config/cosmic",
"--talk-name=com.system76.CosmicSettingsDaemon"
],
"build-options": {
"append-path": "/usr/lib/sdk/rust-stable/bin",
"env": {
"CEF_ROOT": "/app/share/cef",
"CEF_PATH": "/app/share/cef"
}
},
"modules": [
{
"name": "cef-rs",
"buildsystem": "simple",
"build-options": {
"env": {
"CARGO_HOME": "/run/build/cef-rs/cargo"
}
},
"build-commands": [
"mkdir -p /app/share",
"cargo --offline run -p export-cef-dir -- --archive cef_binary_*.tar.bz2 --force /app/share/cef"
],
"sources": [
{
"type": "git",
"url": "https://github.com/tauri-apps/cef-rs",
"tag": "export-cef-dir-v145.5.0+145.0.27"
},
"cef-rs-cargo-sources.json",
{
"type": "file",
"url": "https://cef-builds.spotifycdn.com/cef_binary_145.0.27%2Bg4ddda2e%2Bchromium-145.0.7632.117_linux64_minimal.tar.bz2",
"only-arches": [
"x86_64"
],
"dest-filename": "cef_binary_145.0.27+g4ddda2e+chromium-145.0.7632.117_linux64_minimal.tar.bz2",
"sha256": "06f05bdb1a04ab99e9ca99cf896fd571ac7ee65cbfdec553d04bd06be80dbf9b"
},
{
"type": "file",
"url": "https://cef-builds.spotifycdn.com/cef_binary_145.0.27%2Bg4ddda2e%2Bchromium-145.0.7632.117_linuxarm64_minimal.tar.bz2",
"only-arches": [
"aarch64"
],
"dest-filename": "cef_binary_145.0.27+g4ddda2e+chromium-145.0.7632.117_linuxarm64_minimal.tar.bz2",
"sha256": "22410ccbf61bc58d5714db1b5f199328420a48b741ff4c0e6c60ee369af5039b"
}
]
},
{
"name": "quick-webapps",
"buildsystem": "simple",
"build-options": {
"env": {
"CARGO_HOME": "/run/build/quick-webapps/cargo",
"CEF_PATH": "/app/share/cef"
}
},
"build-commands": [
"cargo --offline fetch --manifest-path Cargo.toml --verbose",
"cargo --offline build --release --verbose",
"just prefix=/app install"
],
"sources": [
{
"type": "dir",
"path": "."
},
"cargo-sources.json"
]
}
]
}