Update VBM and LiveTrax packaging, exclude MIDNAM

This commit is contained in:
Robin Gareus 2026-01-22 00:36:54 +01:00
parent d54c8e7fb0
commit 21533227e7
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04
3 changed files with 17 additions and 6 deletions

View file

@ -248,7 +248,6 @@ mkdir -p $Themes
mkdir -p $Locale
mkdir -p $Surfaces
mkdir -p $MidiMaps
mkdir -p $PatchFiles
mkdir -p $LuaScripts
mkdir -p $MackieControl
mkdir -p $OSC
@ -257,6 +256,10 @@ mkdir -p $Panners
mkdir -p $Backends
mkdir -p $Shared/doc
if test -z "$VBM" -a -z "$LIVETRAX"; then
mkdir -p $PatchFiles
fi
# maybe set variables
ENVIRONMENT=environment
rm -f $ENVIRONMENT
@ -377,9 +380,11 @@ done
# MIDNAM Patch Files
# got to be careful with names here
for x in $BUILD_ROOT/../share/patchfiles/*.midnam ; do
cp "$x" $PatchFiles
done
if test -z "$VBM" -a -z "$LIVETRAX"; then
for x in $BUILD_ROOT/../share/patchfiles/*.midnam ; do
cp "$x" $PatchFiles
done
fi
# Lua Scripts Files
# got to be careful with names here

View file

@ -192,7 +192,7 @@ mkdir -p $OSC
mkdir -p $LuaScripts
mkdir -p $Themes
if test -z "$VBM"; then
if test -z "$VBM" -a -z "$LIVETRAX"; then
mkdir -p $PatchFiles
fi
@ -369,7 +369,7 @@ done
# MIDNAM Patch Files
# got to be careful with names here
if test -z "$VBM"; then
if test -z "$VBM" -a -z "$LIVETRAX"; then
for x in $BUILD_ROOT/../share/patchfiles/*.midnam ; do
cp "$x" $PatchFiles
done

View file

@ -252,6 +252,12 @@ cp gtk2_ardour/icons/cursor_square/* $DESTDIR/share/${LOWERCASE_DIRNAME}/icons/
echo " === bundle completed, cleaning up"
./waf uninstall
find $DESTDIR -name "*.dll.a" -print0 | xargs -0 -r rm
# no need for MIDNAM
if test -n "$VBM" -o test -n "$LIVETRAX"; then
rm -rf $DESTDIR/share/*/patchfiles
fi
echo " === complete"
du -sh $DESTDIR