diff options
Diffstat (limited to 'testdist.sh')
-rwxr-xr-x | testdist.sh | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/testdist.sh b/testdist.sh index b964715..c7c6bfc 100755 --- a/testdist.sh +++ b/testdist.sh @@ -6,6 +6,13 @@ then exit 1 fi +if [ "$VST_BASE" == "" ] +then + echo "Set the absolute VST_BASE variable." + exit 1 +fi + + VER=$1 make dist && ( @@ -14,7 +21,8 @@ make dist && ( rm -Rf drumgizmo-$VER tar xvzf ../drumgizmo-$VER.tar.gz cd drumgizmo-$VER - ./configure --enable-lv2 --enable-cli --prefix=/usr + ./configure --enable-lv2 --enable-cli --enable-vst \ + --with-vst-sources="$VST_BASE" --prefix=/usr make DESTDIR=$PWD/tst/install make install ) |