This is the snap for C&C: Red Alert. It works on Ubuntu, Fedora, Debian, and other major Linux distributions.
Published for with 💝 by Snapcrafters
snap install cncra
You can use this snap as a reference for creating snaps of other WINE compatible 32-bit Windows applications or games. Here are the main things you'll need to modify:
- Change the meta data and
apps:
andparts:
names fromtsun
. - Modify the
command:
to reference the executable the application/game should launch. - If you can't redistrbute the application/game use
INSTALL_URL:
to reference a web accessible installer. - Modify the
install_app()
andlaunch_app()
functions insnap/scripts/sommelier
to suit the application/game you're snapping. - Modify the
TITLE
andNOTICE
insnap/scripts/sommelier
to suit the application/game you're snapping. - If you can't redistrbute the application/game use
INSTALL_URL:
in theenvironment:
of the maincommand:
to reference a web accessible installer. - Some games require a virtual desktop to function correctly. Add
VIRTDESKTOP: 1
to theenvironment:
of the maincommand:
to enable virtual desktop or set it to0
or remove it completely to disable a virtual desktop. - Some applications/games require that WINE DLLs are overriden, you can specify then via
DLLOVERRIDES:
in theenvironment:
of the maincommand:
. - If the application/game requires some winetricks to work then you can specify them via
TRICKS:
in theenvironment:
of the maincommand:
.
Here's an example environment:
that shows how to use some of the capabilities outlined above:
environment:
WINEPREFIX: "$SNAP_USER_COMMON/.wine"
DLLOVERRIDES: "mscoree,mshtml=" # Prevent pop-ups about Wine Mono and Wine Gecko
INSTALL_URL: "https://www.xyz.com/setup.exe"
TRICKS: "winxp corefonts d3dx9_43"
VIRTDESKTOP: 1
LC_ALL: "C.UTF-8"
One other point of interest is that yad
is staged in the snap and a
faux zenity
script is included that execs yad
. We do this because
yad
is argument compatible with zenity
but pulls far fewer package
dependencies.
If you have any questions about creating snaps of WINE compatible Windows applications then post in the Snapcraft forum.