-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrs.bxt.Plitki.json
67 lines (67 loc) · 2.08 KB
/
rs.bxt.Plitki.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"app-id": "rs.bxt.Plitki",
"runtime": "org.gnome.Platform",
"runtime-version": "43",
"sdk": "org.gnome.Sdk",
"sdk-extensions": ["org.freedesktop.Sdk.Extension.rust-stable"],
"command": "plitki-gnome",
"tags": [
"nightly"
],
"finish-args" : [
"--filesystem=host",
"--filesystem=~/.var/app/com.valvesoftware.Steam",
"--share=ipc",
"--socket=fallback-x11",
"--socket=wayland",
"--socket=pulseaudio",
"--device=dri",
"--env=RUST_BACKTRACE=1"
],
"build-options" : {
"append-path" : "/usr/lib/sdk/rust-stable/bin",
"build-args" : [
"--share=network"
],
"env" : {
"CARGO_HOME" : ".cargo-home"
}
},
"modules": [
{
"name" : "blueprint",
"buildsystem" : "meson",
"sources" : [
{
"type" : "git",
"url" : "https://gitlab.gnome.org/jwestman/blueprint-compiler.git",
"commit" : "9adcab2d225fd6435edc85c72a0b67e33880e00b"
}
]
},
{
"name": "plitki",
"buildsystem": "simple",
"build-commands": [
"cargo build --workspace --release"
],
"post-install": [
"install -Dt $FLATPAK_DEST/bin target/release/plitki-{gtk,gnome}",
"install -Dm0644 -t $FLATPAK_DEST/share/applications rs.bxt.Plitki.desktop",
"install -Dm0644 -t $FLATPAK_DEST/share/glib-2.0/schemas plitki-gnome/rs.bxt.Plitki.gschema.xml",
"glib-compile-schemas $FLATPAK_DEST/share/glib-2.0/schemas"
],
"test-commands": [
"cargo clippy --all-targets --workspace --release",
"cargo test --no-run --workspace --release",
"cargo test --workspace --release"
],
"sources": [
{
"type": "dir",
"path": "."
}
]
}
]
}