1
Fork 0
mirror of https://github.com/redstrate/Auracite.git synced 2025-04-19 17:36:50 +00:00
auracite/.flatpak-manifest.json
Joshua Goins be94d9331f Update dependencies, Flatpak, Rust edition and more
Also adds building information to the wiki because I forgot myself!
2025-03-10 18:55:52 -04:00

59 lines
1.5 KiB
JSON

{
"id": "zone.xiv.auracite",
"branch": "master",
"runtime": "org.kde.Platform",
"runtime-version": "6.8",
"sdk": "org.kde.Sdk",
"command": "auracite",
"finish-args": [
"--device=dri",
"--env=QML_IMPORT_PATH=/app/qml",
"--env=QT_PLUGIN_PATH=/app/plugins:/app/lib64/plugins:/app/lib/plugins:/usr/share/runtime/lib/plugins",
"--share=network",
"--socket=fallback-x11",
"--socket=wayland"
],
"sdk-extensions": [
"org.freedesktop.Sdk.Extension.rust-stable"
],
"build-options": {
"append-path" : "/usr/lib/sdk/rust-stable/bin",
"env" : {
"CARGO_HOME" : "/run/build/auracite/cargo"
}
},
"modules": [
{
"name": "kirigami-addons",
"config-opts": [
"-DBUILD_TESTING=OFF",
"-DCMAKE_BUILD_TYPE=RelWithDebInfo"
],
"buildsystem": "cmake-ninja",
"sources": [
{
"type": "git",
"url": "https://invent.kde.org/libraries/kirigami-addons.git"
}
]
},
{
"name": "auracite",
"buildsystem": "simple",
"build-commands": [
"cargo --offline fetch --manifest-path Cargo.toml",
"cargo --offline build --release",
"install -Dm755 ./target/release/auracite -t /app/bin/",
"install -Dm644 ./zone.xiv.auracite.svg -t /app/share/icons/hicolor/scalable/apps/",
"install -Dm644 ./zone.xiv.auracite.desktop -t /app/share/applications/"
],
"sources": [
{
"type": "dir",
"path": "."
},
"generated-sources.json"
]
}
]
}