summaryrefslogtreecommitdiff
path: root/tools/osx_packaging/osx_build
diff options
context:
space:
mode:
authorBen Loftis <ben@harrisonconsoles.com>2015-01-30 11:46:06 -0600
committerBen Loftis <ben@harrisonconsoles.com>2015-01-30 11:46:06 -0600
commitafa3db001c0bc48bf7941c6461c86ff61c51e317 (patch)
tree4bcc80aef426070821a7519733c4b2a39ff02136 /tools/osx_packaging/osx_build
parent871904b648f20bdc0e9a3bd6ecd0b04be0d0dc49 (diff)
make it possible to bundle harrison plugins; osx version (disabled for now)
Diffstat (limited to 'tools/osx_packaging/osx_build')
-rwxr-xr-xtools/osx_packaging/osx_build11
1 files changed, 11 insertions, 0 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index ec93de0274..fffd70c10a 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -17,6 +17,7 @@ mkdir -p "$CACHEDIR"
SAE=
MIXBUS=
WITH_HARVID=1
+WITH_HARRISON_LV2=
WITH_LADSPA=1
STRIP=1
PRINT_SYSDEPS=
@@ -574,6 +575,16 @@ else
fi
+if test x$WITH_HARRISON_LV2 != x ; then
+ if file ${PRODUCT_PKG_DIR}/$APPROOT/MacOS/$MAIN_EXECUTABLE | grep -q x86_64; then
+ OSX_ARCH=osx64
+ else
+ OSX_ARCH=osx32
+ fi
+ curl -s http://www.harrisonconsoles.com/mixbus/mb3/${OSX_ARCH}/harrison_lv2s.zip \
+ | bsdtar -C "${PRODUCT_PKG_DIR}/${APPROOT}/lib/LV2/" -xf -
+fi
+
if test x$WITH_HARVID != x ; then
echo "installing video tools.."
HARVID_VERSION=$(curl -s -S http://ardour.org/files/video-tools/harvid_version.txt)