Allow to bunde demo session(s)

This commit is contained in:
Robin Gareus 2016-09-15 13:11:43 +02:00
parent 98491b9eb2
commit 5643ed4257
3 changed files with 36 additions and 1 deletions

View File

@ -677,8 +677,8 @@ if test x$WITH_X42_LV2 != x ; then
unzip -q -d "$APPLIB/LV2/" "${CACHEDIR}/${proj}-lv2-linux-${WARCH}-${X42_VERSION}.zip"
done
fi
################################################################################
################################################################################
if test x$WITH_HARVID != x ; then
cd $APPBIN
@ -704,6 +704,18 @@ if test x$WITH_HARVID != x ; then
cd -
fi
################################################################################
if test x$DEMO_SESSION_URL != x ; then
mkdir -p $Shared/sessions
DEMO_SESSIONS=$(curl -s -S --fail $DEMO_SESSION_URL/index.txt)
for demo in $DEMO_SESSIONS; do
curl -s -S --fail -# -o $Shared/sessions/$demo $DEMO_SESSION_URL/$demo
done
fi
################################################################################
#
# Add the uninstaller
#

View File

@ -698,6 +698,17 @@ if test -n "$MIXBUS"; then
cp "${CACHEDIR}/harrison_vamp.${OSX_BENSID}.dylib" \
"${PRODUCT_PKG_DIR}/${APPROOT}/lib/harrison_vamp.dylib"
fi
################################################################################
if test x$DEMO_SESSION_URL != x ; then
mkdir -p $Shared/sessions
DEMO_SESSIONS=$(curl -s -S --fail $DEMO_SESSION_URL/index.txt)
for demo in $DEMO_SESSIONS; do
curl -s -S --fail -# -o $Shared/sessions/$demo $DEMO_SESSION_URL/$demo
done
fi
################################################################################
( cd $PRODUCT_PKG_DIR ; find . ) > file_list.txt

View File

@ -296,6 +296,18 @@ if test -n "$MIXBUS"; then
"$ALIBDIR/vamp/harrison_vamp.dll"
fi
################################################################################
if test x$DEMO_SESSION_URL != x ; then
mkdir -p $Shared/sessions
DEMO_SESSIONS=$(curl -s -S --fail $DEMO_SESSION_URL/index.txt)
for demo in $DEMO_SESSIONS; do
curl -s -S --fail -# -o $Shared/sessions/$demo $DEMO_SESSION_URL/$demo
done
fi
################################################################################
( cd $DESTDIR ; find . ) > ${TMPDIR}/file_list.txt
################################################################################