Files
flatpak-maybe/com.example.HelloWorld.yml
2026-02-04 10:19:00 +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