-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathorg.squidowl.halloy.json
48 lines (48 loc) · 1.74 KB
/
org.squidowl.halloy.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
{
"app-id": "org.squidowl.halloy",
"runtime": "org.freedesktop.Platform",
"runtime-version": "23.08",
"sdk": "org.freedesktop.Sdk",
"sdk-extensions" : [
"org.freedesktop.Sdk.Extension.rust-stable"
],
"command": "halloy",
"finish-args": [
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--device=dri",
"--share=network"
],
"build-options": {
"append-path" : "/usr/lib/sdk/rust-stable/bin"
},
"modules": [
{
"name": "halloy",
"buildsystem": "simple",
"build-options": {
"env": {
"CARGO_HOME": "/run/build/halloy/cargo"
}
},
"build-commands": [
"cargo --offline fetch --manifest-path Cargo.toml --verbose",
"cargo --offline build --release --verbose",
"mkdir -p /app/share/icons && cp -R ./assets/linux/icons/. /app/share/icons/",
"install -Dm644 ./assets/linux/org.squidowl.halloy.appdata.xml /app/share/metainfo/org.squidowl.halloy.appdata.xml",
"install -Dm644 ./assets/linux/org.squidowl.halloy.desktop /app/share/applications/org.squidowl.halloy.desktop",
"install -Dm755 ./target/release/halloy -t /app/bin/"
],
"sources": [
{
"type": "archive",
"archive-type": "tar-gzip",
"url": "https://github.com/squidowl/halloy/archive/refs/tags/2024.14.tar.gz",
"sha256": "f5f9509770c628e021a9ea8d5eed4b51aa3c7b4a792ff2de55cc1596f6f5c50b"
},
"generated-sources.json"
]
}
]
}