2006-10-21 15:01:50 -04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# NOTE: the use of PREFIX is incorrect - it should be INSTALL_PREFIX,
|
|
|
|
# but somehow scons puts leading /'s on INSTALL_PREFIX and that causes
|
|
|
|
# wine to be unable to find the .exe.so file
|
|
|
|
|
2007-01-15 13:33:54 -05:00
|
|
|
export GTK_PATH=%PREFIX%/lib/ardour2:$GTK_PATH
|
|
|
|
|
2006-10-21 15:01:50 -04:00
|
|
|
LD_LIBRARY_PATH=%PREFIX%/lib/ardour2:$LD_LIBRARY_PATH exec wine %PREFIX%/lib/ardour2/ardour_vst.exe.so "$@"
|
|
|
|
|