mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-23 05:37:22 +01:00
Update VBM and LiveTrax packaging, exclude MIDNAM
This commit is contained in:
parent
d54c8e7fb0
commit
21533227e7
3 changed files with 17 additions and 6 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue