#!/bin/bash # by Sandy Sandgreen # Install wineasio 0.7.3 on Ubuntu 8.04 # # Thanks to Jacklab for the wineasio source # but also to David Hayes and AlanPoPo who both made a great howto # echo "This script will download and install wineasio" ; echo "This might take awhile, please be patient" ; echo "First it will install the latest wine, jack and some other usefull stuff" ; sudo apt-get -y install wine wine-dev libjack0.100.0-dev qjackctl build-essential echo "Configuring wine" ; wineprefixcreate -w mkdir -p ~/wineasio_tmp cd ~/wineasio_tmp echo "REGEDIT4" >> alsa.reg echo "[HKEY_CURRENT_USER\Software\Wine\Drivers]" >> alsa.reg echo '"Audio"="alsa"' >> alsa.reg wine regedit alsa.reg echo "Then it will download the wineasio driver and place it in your wine-folder" ; wget http://www.sandgreen.dk/xt2/files/wineasio_0.7.3/wineasio.dll.so chmod u+rwx wineasio.dll.so sudo mv wineasio.dll.so /usr/lib/wine/ rm -Rf ~/wineasio_tmp regsvr32 wineasio.dll sudo ln -s /usr/lib/libjack-0.100.0.so.0 /usr/lib/libjack.so.0 echo "All done :-) ... Now you can use the win-version of EnergyXT2 (or Reaper) with wineasio" ; echo "Press [ENTER] to close the shell" read