Skip to content

Instantly share code, notes, and snippets.

@wyrmiyu
Last active March 5, 2016 23:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wyrmiyu/0bad353afdab31a5dffb to your computer and use it in GitHub Desktop.
Save wyrmiyu/0bad353afdab31a5dffb to your computer and use it in GitHub Desktop.
HOW-TO for installation of Tappio free accounting software to run with Wine
To install Tappio to *NIX-like system that runs Wine:
1) create a directory for Tappio, for example under your home directory:
$ mkdir $HOME/tappio && cd $HOME/tappio
2) download tappio-setup.exe:
$ wget http://www.lahdenniemi.fi/jussi/tappio/tappio-setup.exe
3) set local wine-environment for tappio:
$ export WINEPREFIX=$(pwd)/wine
4) run the installer:
$ wine tappio-setup.exe
5) After the setup has finished, Tappio should be available under
$WINEPREFIX/drive_c/Program Files (x86)/Tappio/tappio.exe
you may use attached wrapper script (tappio-wrapper.sh) to start it.
#!/bin/bash
export WINEPREFIX=$HOME/tappio/wine ## IMPORTANT: change this (if needed) to reflect your directory!
prog="$WINEPREFIX/drive_c/Program Files (x86)/Tappio/tappio.exe"
exec /usr/bin/wine "$prog"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment