summaryrefslogtreecommitdiff
path: root/tools/linux_packaging/build
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2015-07-02 10:35:44 +0200
committerRobin Gareus <robin@gareus.org>2015-07-02 10:35:44 +0200
commit024c11d4ec40a87f749ca6264e4a074d663132cf (patch)
tree15365293c7a4a48b13af43f0cf98a19af44e244c /tools/linux_packaging/build
parent4756423e6096162e092309de1e640e80ff10a71a (diff)
Fifteen bytes in the harriman cache
Yo ho ho and a bottle of zip.
Diffstat (limited to 'tools/linux_packaging/build')
-rwxr-xr-xtools/linux_packaging/build18
1 files changed, 10 insertions, 8 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index bc35f49925..52d5a927a8 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -582,35 +582,37 @@ if test -n "$MIXBUS"; then
mkdir -p $APPLIB/LV2
mkdir -p $APPLIB/ladspa/strip/
- # TODO find a good way to cache those locally
- curl -s -S \
+ curl -s -S -# \
-z "${CACHEDIR}/harrison_lv2s.${HARCH}.zip" \
-o "${CACHEDIR}/harrison_lv2s.${HARCH}.zip" \
http://www.harrisonconsoles.com/mixbus/mb3/${HARCH}/harrison_lv2s.zip
unzip -q -d "$APPLIB/LV2/" "${CACHEDIR}/harrison_lv2s.${HARCH}.zip"
- curl -s -S \
- -z $APPLIB/ladspa/strip/harrison_channelstrip.so \
- -o $APPLIB/ladspa/strip/harrison_channelstrip.so \
+ curl -s -S -# \
+ -z "${CACHEDIR}/harrison_channelstrip.${HARCH}.so" \
+ -o "${CACHEDIR}/harrison_channelstrip.${HARCH}.so" \
http://www.harrisonconsoles.com/mixbus/mb3/${HARCH}/harrison_channelstrip.so
+ cp "${CACHEDIR}/harrison_channelstrip.${HARCH}.so" \
+ $APPLIB/ladspa/strip/harrison_channelstrip.so
+
METERS_VERSION=$(curl -s -S http://gareus.org/x42/linux/x42-meters.latest.txt)
rsync -a -q --partial \
rsync://gareus.org/x42/linux/x42-meters-lv2-linux-${WARCH}-${METERS_VERSION}.zip \
"${CACHEDIR}/x42-meters-lv2-linux-${WARCH}-${METERS_VERSION}.zip"
- unzip -d "$APPLIB/LV2/" "${CACHEDIR}/x42-meters-lv2-linux-${WARCH}-${METERS_VERSION}.zip"
+ unzip -q -d "$APPLIB/LV2/" "${CACHEDIR}/x42-meters-lv2-linux-${WARCH}-${METERS_VERSION}.zip"
SETBFREE_VERSION=$(curl -s -S http://gareus.org/x42/linux/setBfree.latest.txt)
rsync -a -q --partial \
rsync://gareus.org/x42/linux/setBfree-lv2-linux-${WARCH}-${SETBFREE_VERSION}.zip \
"${CACHEDIR}/setBfree-lv2-linux-${WARCH}-${SETBFREE_VERSION}.zip"
- unzip -d "$APPLIB/LV2/" "${CACHEDIR}/setBfree-lv2-linux-${WARCH}-${SETBFREE_VERSION}.zip"
+ unzip -q -d "$APPLIB/LV2/" "${CACHEDIR}/setBfree-lv2-linux-${WARCH}-${SETBFREE_VERSION}.zip"
MIDIFILTER_VERSION=$(curl -s -S http://gareus.org/x42/linux/x42-midifilter.latest.txt)
rsync -a -q --partial \
rsync://gareus.org/x42/linux/x42-midifilter-lv2-linux-${WARCH}-${MIDIFILTER_VERSION}.zip \
"${CACHEDIR}/x42-midifilter-lv2-linux-${WARCH}-${MIDIFILTER_VERSION}.zip"
- unzip -d "$APPLIB/LV2/" "${CACHEDIR}/x42-midifilter-lv2-linux-${WARCH}-${MIDIFILTER_VERSION}.zip"
+ unzip -q -d "$APPLIB/LV2/" "${CACHEDIR}/x42-midifilter-lv2-linux-${WARCH}-${MIDIFILTER_VERSION}.zip"
fi
################################################################################