diff options
author | Ricky Kresslein <ricky@kressle.in> | 2022-02-20 19:19:45 +0100 |
---|---|---|
committer | Ricky Kresslein <ricky@kressle.in> | 2022-02-20 19:19:45 +0100 |
commit | 2a8e1c75863bc84c55eadcff1f3adb42d409d180 (patch) | |
tree | 8f5bb0f816a5ecffa25a01ab15ee84bc717cf99f /build-aux/flatpak | |
parent | 379561117862952d567bfdbf0700b5c7f470a1a8 (diff) | |
download | Furtherance-2a8e1c75863bc84c55eadcff1f3adb42d409d180.tar.zst |
- Distinctive development mode
Diffstat (limited to 'build-aux/flatpak')
-rw-r--r-- | build-aux/flatpak/com.lakoliu.Furtherance.Devel.json | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/build-aux/flatpak/com.lakoliu.Furtherance.Devel.json b/build-aux/flatpak/com.lakoliu.Furtherance.Devel.json new file mode 100644 index 0000000..4f2d826 --- /dev/null +++ b/build-aux/flatpak/com.lakoliu.Furtherance.Devel.json @@ -0,0 +1,58 @@ +{ + "app-id" : "com.lakoliu.Furtherance.Devel", + "runtime" : "org.gnome.Platform", + "runtime-version" : "master", + "sdk" : "org.gnome.Sdk", + "sdk-extensions" : [ + "org.freedesktop.Sdk.Extension.rust-stable" + ], + "command" : "furtherance", + "tags" : [ + "nightly" + ], + "finish-args" : [ + "--share=network", + "--share=ipc", + "--socket=fallback-x11", + "--device=dri", + "--socket=wayland", + "--socket=session-bus" + ], + "build-options" : { + "append-path" : "/usr/lib/sdk/rust-stable/bin", + "build-args" : [ + "--share=network" + ], + "env" : { + "RUST_BACKTRACE" : "1", + "RUST_LOG" : "furtherance=debug" + } + }, + "cleanup" : [ + "/include", + "/lib/pkgconfig", + "/man", + "/share/doc", + "/share/gtk-doc", + "/share/man", + "/share/pkgconfig", + "*.la", + "*.a" + ], + "modules" : [ + { + "name" : "furtherance", + "builddir" : true, + "buildsystem" : "meson", + "config-opts" : [ + "-Dprofile=development" + ], + "sources" : [ + { + "type" : "git", + "url" : "file:///home/ricky/Documents/SoftwareDev/Rust/furtherance" + } + ] + } + ] +} |