diff --git a/container.yaml b/container.yaml new file mode 100644 index 0000000..baaf9c4 --- /dev/null +++ b/container.yaml @@ -0,0 +1,23 @@ +compose: + modules: + - foobillard:master +flatpak: + # Derived from the project's domain name + id: dk.sunsite.foobillard + branch: stable + # Binary to execute to run the app + command: foobillard + rename-desktop-file: foobillard.desktop + rename-appdata-file: foobillard.appdata.xml + rename-icon: foobillard + tags: [] + # Not sandboxed. See 'man flatpak-build-finish' + finish-args: | + --filesystem=host + --share=ipc + --socket=x11 + --socket=wayland + --socket=session-bus + --device=dri + --socket=pulseaudio + diff --git a/foobillard.yaml b/foobillard.yaml new file mode 100644 index 0000000..01972f5 --- /dev/null +++ b/foobillard.yaml @@ -0,0 +1,31 @@ +--- +document: modulemd +version: 2 +data: + summary: OpenGL billard game + description: >- + FooBillard is an attempt to create a free OpenGL-billard for Linux. FooBillard + is still under development but the main physics is implemented. + license: + module: + - MIT + dependencies: + - buildrequires: + flatpak-common: [f30] + flatpak-runtime: [f30] + platform: [f30] + requires: + flatpak-common: [f30] + flatpak-runtime: [f30] + platform: [f30] + profiles: + default: + rpms: + - foobillard + components: + rpms: + foobillard: + rationale: Application package + ref: master + buildorder: 10 +...