-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathflatpak_schema.json
More file actions
50 lines (50 loc) · 1.29 KB
/
Copy pathflatpak_schema.json
File metadata and controls
50 lines (50 loc) · 1.29 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
{
"app-id": "io.github.wiiznokes.fan-control",
"runtime": "org.freedesktop.Platform",
"runtime-version": "25.08",
"base": "com.system76.Cosmic.BaseApp",
"base-version": "stable",
"sdk": "org.freedesktop.Sdk",
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.rust-stable",
"org.freedesktop.Sdk.Extension.llvm22"
],
"command": "fan-control",
"finish-args": [
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--device=all",
"--filesystem=/sys",
"--talk-name=com.system76.CosmicSettingsDaemon"
],
"build-options": {
"append-path": "/usr/lib/sdk/rust-stable/bin",
"env": {
"CARGO_HOME": "/run/build/fan-control/cargo"
}
},
"modules": [
{
"name": "fan-control",
"buildsystem": "simple",
"build-options": {
"append-path": "/usr/lib/sdk/llvm22/bin",
"prepend-ld-library-path": "/usr/lib/sdk/llvm22/lib"
},
"build-commands": [
"just build-libsensors",
"FAN_CONTROL_FORMAT=flatpak just build-release --verbose --offline",
"just prefix=/app install"
],
"sources": [
{
"type": "git",
"url": "https://github.com/wiiznokes/fan-control",
"commit": "###commit###"
},
"./cargo-sources.json"
]
}
]
}