@@ -0,0 +1,75 @@
+#!/usr/bin/env playonlinux-bash
+
+# Date: 2020-06-18
+# Last Revision: see changelog
+# Wine version used 5.3
+# Author: Samuel Greiner
+# Script License: MIT
+# Program License: proprietary
+
+# References
+#
+# CHANGELOG
+# [Samuel Greiner] (2020-06-18)
+# Initial script.
+
+# ---------------------------------------------------------------------------------------------------------
+
+# Initialization
+[ "$PLAYONLINUX" = "" ] && exit 0
+source "$PLAYONLINUX/lib/sources"
+
+TITLE="Buhl - WISO steuer:Sparbuch"
+PREFIX="SteuerSparbuch2020"
+WINEVERSION="5.3"
+OSVERSION="win7"
+
+
+POL_SetupWindow_Init
+POL_SetupWindow_SetID
+
+POL_SetupWindow_presentation "$TITLE" "Buhl Data Service" "http://www.buhl.de" "Samuel Greiner" "$TITLE"
+
+POL_Debug_Init
+
+
+# ---------------------------------------------------------------------------------------------------------
+# Setup
+
+POL_System_SetArch "x86"
+POL_SetupWindow_InstallMethod "LOCAL"
+POL_SetupWindow_browse "$(eval_gettext 'Please select the setup file to run!')" "$TITLE"
+SetupIs="$APP_ANSWER"
+
+# ---------------------------------------------------------------------------------------------------------
+
+# Prepare resources for installation
+
+# NOTE: Install wine version if isn't available. This is necessary because
+# even though "POL_Wine_PrefixCreate" solves this, we end up having
+# problems when the required version is not available and it tries to
+# install it! Questor
+POL_Wine_InstallVersion "$WINEVERSION"
+
+POL_Wine_SelectPrefix "$PREFIX"
+POL_Wine_PrefixCreate "$WINEVERSION"
+
+Set_OS "$OSVERSION"
+
+POL_Install_corefonts
+
+# ---------------------------------------------------------------------------------------------------------
+# Install
+POL_Wine "$SetupIs"
+POL_Wine_WaitExit "$TITLE"
+
+# Create starter
+POL_Shortcut "firefox.exe" "$TITLE"
+
+POL_SetupWindow_message "$(eval_gettext '$TITLE has been installed successfully!\n\nThanks!\nBy Samuel Greiner')" "$TITLE"
+
+POL_SetupWindow_Close
+exit 0
\ No newline at end of file