You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
3.0 KiB
106 lines
3.0 KiB
{ |
|
"id": "org.gnome.Fractal.Devel", |
|
"runtime": "org.gnome.Platform", |
|
"runtime-version": "master", |
|
"sdk": "org.gnome.Sdk", |
|
"sdk-extensions": [ |
|
"org.freedesktop.Sdk.Extension.rust-stable" |
|
], |
|
"command": "fractal", |
|
"finish-args": [ |
|
"--socket=fallback-x11", |
|
"--socket=wayland", |
|
"--socket=pulseaudio", |
|
"--share=network", |
|
"--share=ipc", |
|
"--device=dri", |
|
"--env=RUST_LOG=fractal=debug,warn", |
|
"--env=G_MESSAGES_DEBUG=none", |
|
"--env=RUST_BACKTRACE=1" |
|
], |
|
"build-options": { |
|
"append-path": "/usr/lib/sdk/rust-stable/bin", |
|
"env": { |
|
"RUSTFLAGS": "-C link-arg=-fuse-ld=mold --cfg=ruma_identifiers_storage=\"Arc\"" |
|
}, |
|
"build-args": [ |
|
"--share=network" |
|
], |
|
"test-args": [ |
|
"--socket=x11", |
|
"--share=network" |
|
] |
|
}, |
|
"modules": [ |
|
{ |
|
"name": "grass", |
|
"buildsystem": "simple", |
|
"build-options": { |
|
"env": { |
|
"CARGO_HOME": "/run/build/grass/cargo" |
|
} |
|
}, |
|
"build-commands": [ |
|
"cargo build --release --locked", |
|
"mkdir -p /app/bin", |
|
"install -D ./target/release/grass /app/bin/" |
|
], |
|
"cleanup": ["*"], |
|
"sources": [ |
|
{ |
|
"type": "git", |
|
"url": "https://github.com/connorskees/grass", |
|
"tag": "0.13.4", |
|
"commit": "e0bb9e2eabfc3a58e42b03089cd7b22c68d09d0b", |
|
"disable-submodules": true |
|
} |
|
] |
|
}, |
|
{ |
|
"name": "protobuf-c", |
|
"buildsystem": "autotools", |
|
"config-opts": [ |
|
"--disable-protoc" |
|
], |
|
"sources": [ |
|
{ |
|
"type": "git", |
|
"url": "https://github.com/protobuf-c/protobuf-c.git", |
|
"tag": "v1.5.2", |
|
"commit": "4719fdd7760624388c2c5b9d6759eb6a47490626" |
|
} |
|
] |
|
}, |
|
{ |
|
"name": "libshumate", |
|
"buildsystem": "meson", |
|
"config-opts": [ |
|
"-Dvapi=false", |
|
"-Dgtk_doc=false", |
|
"-Dvector_renderer=true" |
|
], |
|
"sources": [ |
|
{ |
|
"type": "git", |
|
"url": "https://gitlab.gnome.org/GNOME/libshumate.git", |
|
"tag": "1.5.0.1", |
|
"commit": "ed5fe31377c050610d5932903a5217e1c7d1d0e4" |
|
} |
|
] |
|
}, |
|
{ |
|
"name": "fractal", |
|
"buildsystem": "meson", |
|
"run-tests": true, |
|
"config-opts": [ |
|
"-Dprofile=development" |
|
], |
|
"sources": [ |
|
{ |
|
"type": "dir", |
|
"path": "../" |
|
} |
|
] |
|
} |
|
] |
|
}
|
|
|