2006-09-26 17:54:51 -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
|
|
|
|
|
2009-02-18 13:32:13 -05:00
|
|
|
export GTK_PATH=%PREFIX%/lib/ardour3:$GTK_PATH
|
2007-01-13 08:14:39 -05:00
|
|
|
|
2009-02-18 13:32:13 -05:00
|
|
|
LD_LIBRARY_PATH=%PREFIX%/lib/ardour3:$LD_LIBRARY_PATH exec wine %PREFIX%/lib/ardour3/ardour_vst.exe.so "$@"
|
2006-09-26 17:54:51 -04:00
|
|
|
|