Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/winepak/applications
A collection of flatpak manifest for building Microsoft Windows applications with Wine via flatpak
https://github.com/winepak/applications
flatpak packaging wine
Last synced: 2 months ago
JSON representation
A collection of flatpak manifest for building Microsoft Windows applications with Wine via flatpak
- Host: GitHub
- URL: https://github.com/winepak/applications
- Owner: winepak
- Created: 2018-04-30T01:03:40.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-19T22:00:10.000Z (almost 6 years ago)
- Last Synced: 2024-08-16T16:22:30.389Z (6 months ago)
- Topics: flatpak, packaging, wine
- Homepage: https://www.winepak.org
- Size: 6.93 MB
- Stars: 416
- Watchers: 33
- Forks: 39
- Open Issues: 113
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Winepak Applications
A collection of flatpak manifest for building Microsoft Windows applications with Wine via flatpak.## Instructions
Remember run all `flatpak` commands as a user, root and `sudo` are not needed.### Sdk & Platform
First you need to build and install the winepak Sdk & Platform. You can do so at [winepak/winepak-sdk-images](https://github.com/winepak/winepak-sdk-images).Some applications use the `stable` branch of `winepak` (which uses stable `wine`) while others use the `staging` branch of `winepak` (which uses `wine-staging`). Build the branches you'll need.
### Building an application
Now with the runtime installed we can build an application with `wine`. Flatpak will default the build to the systems arch, x86_64 = 64bit and i386 = 32bit. You can specify the arch by passing `--arch=ARCH`, remove this flag if you don't need it.To build an application like `tld.domain.Application` we have two build options.
#### Repo
The repo version exports the build to a repo, in this case `winepak`. You then need to install the application via the local repo.flatpak-builder --arch=ARCH --force-clean --repo=winepak builds tld.domain.Application/tld.domain.Application.yml
Now to install simple run the application. Remember if you don't build the application with a GPG key then you will be forced to install the application with `--user`.
flatpak install winepak tld.domain.Application
#### Direct
The direct method allows you to install a build directly from source without the need of a repo, this is done by running:flatpak-builder --user --arch=ARCH --force-clean --install builds tld.domain.Application/tld.domain.Application.yml
### Run the application
As easy as:flatpak run tld.domain.Application