#!/bin/sh
# Shell script to demonstrate installing
# Access 2000 minimum runtime on Wine.
# (See also http://bugs.winehq.org/show_bug.cgi?id=5325 )

test -f art2kmin.exe || wget http://download.microsoft.com/download/office2000dev/art2kmin/1/win98/en-us/art2kmin.exe
echo Just accept defaults when prompted
wine art2kmin.exe
cd ~/".wine/drive_c/ART2KMin Setup"
wine Setup.exe INSTALLPFILES=1

# That's it!

