From 233f8ba6e5caaeac9b3ef1f0b678ef09e2e75ce1 Mon Sep 17 00:00:00 2001 From: Hari Rana Date: Thu, 15 Jun 2023 16:17:09 -0400 Subject: [PATCH] Add Wine docs --- docs/02-for-app-authors/14-wine.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 docs/02-for-app-authors/14-wine.md diff --git a/docs/02-for-app-authors/14-wine.md b/docs/02-for-app-authors/14-wine.md new file mode 100644 index 00000000..b8d56dc8 --- /dev/null +++ b/docs/02-for-app-authors/14-wine.md @@ -0,0 +1,20 @@ +# Wine + +Flathub contains an unofficial Wine stable BaseApp, stylized as +[org.winehq.Wine](https://github.com/flathub/org.winehq.Wine), to have +and run Wine directly from within the Flatpak application. To use the +Wine BaseApp, we need to explicitly specify it in the manifest and +inherit all needed extensions: + +``` yaml +base: org.winehq.Wine +base-version: stable-21.08 # Version of Wine BaseApp +inherit-extensions: + - org.freedesktop.Platform.GL32 + - org.freedesktop.Platform.ffmpeg-full + - org.freedesktop.Platform.ffmpeg_full.i386 + - org.winehq.Wine.gecko + - org.winehq.Wine.mono + - org.winehq.Wine.DLLs +``` +