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.
146 lines
4.5 KiB
146 lines
4.5 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", |
|
"org.freedesktop.Sdk.Extension.llvm18" |
|
], |
|
"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-ld-library-path": "/usr/lib/sdk/llvm18/lib", |
|
"append-path": "/usr/lib/sdk/llvm18/bin:/usr/lib/sdk/rust-stable/bin", |
|
"env": { |
|
"CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER": "clang", |
|
"CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUSTFLAGS": "-C link-arg=-fuse-ld=/usr/lib/sdk/rust-stable/bin/mold --cfg=ruma_identifiers_storage=\"Arc\"", |
|
"CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER": "clang", |
|
"CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_RUSTFLAGS": "-C link-arg=-fuse-ld=/usr/lib/sdk/rust-stable/bin/mold --cfg=ruma_identifiers_storage=\"Arc\"" |
|
}, |
|
"build-args": [ |
|
"--share=network" |
|
], |
|
"test-args": [ |
|
"--socket=x11", |
|
"--share=network" |
|
] |
|
}, |
|
"add-extensions": { |
|
"org.freedesktop.Platform.ffmpeg-full": { |
|
"version": "24.08", |
|
"directory": "lib/ffmpeg", |
|
"add-ld-path": ".", |
|
"no-autodownload": false, |
|
"autodelete": false |
|
} |
|
}, |
|
"cleanup-commands": [ |
|
"mkdir -p ${FLATPAK_DEST}/lib/ffmpeg" |
|
], |
|
"cleanup": [ |
|
"bin/grass" |
|
], |
|
"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/" |
|
], |
|
"sources": [ |
|
{ |
|
"type": "git", |
|
"url": "https://github.com/connorskees/grass", |
|
"tag": "0.13.4", |
|
"commit": "e0bb9e2eabfc3a58e42b03089cd7b22c68d09d0b" |
|
} |
|
] |
|
}, |
|
{ |
|
"name": "protobuf-c", |
|
"buildsystem": "autotools", |
|
"config-opts": [ |
|
"--disable-protoc" |
|
], |
|
"sources": [ |
|
{ |
|
"type": "git", |
|
"url": "https://github.com/protobuf-c/protobuf-c.git", |
|
"tag": "v1.5.1", |
|
"commit": "185beed28e65494be7505b30c1afeaf199e19b23" |
|
} |
|
] |
|
}, |
|
{ |
|
"name": "libshumate", |
|
"buildsystem": "meson", |
|
"config-opts": [ |
|
"-Dgir=false", |
|
"-Dvapi=false", |
|
"-Dgtk_doc=false", |
|
"-Dvector_renderer=true" |
|
], |
|
"sources": [ |
|
{ |
|
"type": "git", |
|
"url": "https://gitlab.gnome.org/GNOME/libshumate.git", |
|
"tag": "1.4.0", |
|
"commit": "06021e35f0d479612fb1a3af91a73ba562175e03" |
|
} |
|
] |
|
}, |
|
{ |
|
"name": "glycin-loaders", |
|
"buildsystem": "meson", |
|
"config-opts": [ |
|
"-Dtests=false", |
|
"-Dlibglycin=false", |
|
"-Dintrospection=false", |
|
"-Dvapi=false", |
|
"-Dcapi_docs=false", |
|
"-Dpython_tests=false" |
|
], |
|
"sources": [ |
|
{ |
|
"type": "git", |
|
"url": "https://gitlab.gnome.org/sophie-h/glycin.git", |
|
"tag": "1.2.0", |
|
"commit": "c886add2e54f916a8158e491ed973581a2c7b3d0", |
|
"disable-submodules": true |
|
} |
|
] |
|
}, |
|
{ |
|
"name": "fractal", |
|
"buildsystem": "meson", |
|
"run-tests": true, |
|
"config-opts": [ |
|
"-Dprofile=development" |
|
], |
|
"sources": [ |
|
{ |
|
"type": "dir", |
|
"path": "../" |
|
} |
|
] |
|
} |
|
] |
|
}
|
|
|