Flatpack example for shipping a binary package

Signed-off-by: Mitja Horvat <pinkfluid@gmail.com>
This commit is contained in:
2026-02-04 10:19:00 +01:00
committed by Mitja Horvat
commit ad975fd826
3 changed files with 111 additions and 0 deletions

6
hello.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
int main() {
printf("Hello from Flatpak binary package!\n");
return 0;
}