vitor251093 / Wine_AppImage_Builder

Script that creates Wine AppImages
2 stars 0 forks source link

Wine_AppImage_Builder

Script that builds a Wine AppImage, so you can run Wine without installing it.

This project was based in the following projects:

More details about pkg2appimage and its syntax here:

How do I use your script?

With the project folder opened with the terminal, run the following command to install Wine 6.0.4 (stable):

./build.sh stable 6.0.4

In case you need to create an AppImage for any other Wine version, just add the version and build as arguments, like the examples below:

./build.sh stable 6.0.4
./build.sh devel 7.13
./build.sh staging 6.10

The created AppImage will be inside the dist folder. If you need a 32-bit only AppImage, just use build32.sh instead. The arguments should still be the same.

If you want to create an AppImage for a CrossOver or Proton build, you need to also add a secondary version, which will be used as reference to download the required dependencies, like the example below:

./build.sh crossover 21.2.0 stable 6.0.4
./build.sh proton 7.25 stable 6.0.4

WARNING: CrossOver builds require Docker. Nor CrossOver nor Proton builds are supported by the build32.sh script yet.