add devel flatpak

This commit is contained in:
0xMRTT 2022-08-12 11:27:19 +02:00
parent 405ad1d079
commit deb7a6f40d
No known key found for this signature in database
GPG key ID: AC9E06BF3DECB6FB
2 changed files with 84 additions and 2 deletions

View file

@ -14,6 +14,6 @@ jobs:
uses: actions/checkout@v3.0.2
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v4
with:
bundle: com.github.AdwCustomizerTeam.AdwCustomizer.flatpak
manifest-path: com.github.AdwCustomizerTeam.AdwCustomizer.json
bundle: com.github.AdwCustomizerTeam.AdwCustomizer.Devel.flatpak
manifest-path: com.github.AdwCustomizerTeam.AdwCustomizer.Devel.json
cache-key: flatpak-builder-${{ github.sha }}-nightly

View file

@ -0,0 +1,82 @@
{
"app-id" : "com.github.AdwCustomizerTeam.AdwCustomizer",
"runtime" : "org.gnome.Platform",
"runtime-version" : "master",
"sdk" : "org.gnome.Sdk",
"command" : "adwcustomizer",
"finish-args" : [
"--share=network",
"--share=ipc",
"--socket=fallback-x11",
"--device=dri",
"--socket=wayland",
"--filesystem=xdg-config/gtk-3.0",
"--filesystem=xdg-config/gtk-4.0"
],
"cleanup" : [
"/include",
"/lib/pkgconfig",
"/man",
"/share/doc",
"/share/gtk-doc",
"/share/man",
"/share/pkgconfig",
"*.la",
"*.a"
],
"modules" : [
"pypi-dependencies.json",
{
"name" : "blueprint-compiler",
"buildsystem" : "meson",
"sources" : [
{
"type" : "git",
"url" : "https://gitlab.gnome.org/jwestman/blueprint-compiler",
"branch" : "main"
}
]
},
{
"name": "libportal",
"buildsystem": "meson",
"config-opts": ["-Ddocs=false", "-Dvapi=false", "-Dbackends=gtk4"],
"sources": [
{
"type": "git",
"url": "https://github.com/flatpak/libportal",
"branch": "main"
}
]
},
{
"name": "material-color-utilities-python",
"buildsystem": "simple",
"build-commands": [
"pip3 install --verbose --exists-action=i --no-index --find-links=\"file://${PWD}\" --prefix=${FLATPAK_DEST} \"material_color_utilities_python~=0.1.0\" --no-build-isolation"
],
"sources": [
{
"type": "file",
"path": "./monet/material_color_utilities_python-0.1.0-py3-none-any.whl",
"sha256": "735d40c0afae660e319798c697da8fe332cfc7103fbed8a081a187f437ed4523"
}
]
},
{
"name" : "adwcustomizer",
"builddir" : true,
"buildsystem" : "meson",
"sources" : [
{
"type" : "git",
"path" : ".",
"branch": "next"
}
]
}
],
"build-options" : {
"env" : { }
}
}