Files
flatpak-maybe/com.example.HelloWorld.yml
Mitja Horvat 15cb6802dc Flatpack example for shipping a binary package
Signed-off-by: Mitja Horvat <pinkfluid@gmail.com>
2026-02-04 10:23:15 +01:00

19 lines
398 B
YAML

app-id: com.example.HelloWorld
runtime: org.freedesktop.Platform
runtime-version: '23.08'
sdk: org.freedesktop.Sdk
command: hello
finish-args:
- --share=ipc
- --socket=fallback-x11
- --socket=wayland
modules:
- name: hello
buildsystem: simple
build-commands:
- gcc -o hello hello.c
- install -D hello /app/bin/hello
sources:
- type: file
path: hello.c