summaryrefslogtreecommitdiff
path: root/tools/osx_packaging
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-09-15 12:51:32 +0200
committerRobin Gareus <robin@gareus.org>2016-09-15 12:51:32 +0200
commit5eb36a32835f35fda7bb75f378f57426e53cd265 (patch)
treeefbc36a282a74201440d37da396484016c65830f /tools/osx_packaging
parent77bd398153240390362fea83533627e6d767ddb3 (diff)
remove cruft from packaging scripts
Diffstat (limited to 'tools/osx_packaging')
-rwxr-xr-xtools/osx_packaging/osx_build23
1 files changed, 1 insertions, 22 deletions
diff --git a/tools/osx_packaging/osx_build b/tools/osx_packaging/osx_build
index e8d52f26a3..7c7020dd52 100755
--- a/tools/osx_packaging/osx_build
+++ b/tools/osx_packaging/osx_build
@@ -20,7 +20,6 @@ MIXBUS32C=
WITH_HARVID=1
WITH_HARRISON_LV2=
WITH_X42_LV2=
-WITH_LADSPA=1
STRIP=1
PRINT_SYSDEPS=
WITH_NLS=
@@ -39,7 +38,6 @@ while [ $# -gt 0 ] ; do
--sae)
SAE=1 ;
- WITH_LADSPA=1;
STRIP= ;
PRODUCT_PKG_DIR=ArdourSAE ;
APPNAME=Ardour ;
@@ -49,7 +47,6 @@ while [ $# -gt 0 ] ; do
WITH_X42_LV2=1 ;
WITH_NLS=1 ;
SAE= ;
- WITH_LADSPA=;
STRIP= ;
PRODUCT_PKG_DIR=Mixbus;
APPNAME=Mixbus ;
@@ -60,7 +57,6 @@ while [ $# -gt 0 ] ; do
WITH_X42_LV2=1 ;
WITH_NLS=1 ;
SAE= ;
- WITH_LADSPA=;
STRIP= ;
PRODUCT_PKG_DIR=Mixbus32C;
APPNAME=Mixbus32C-${major_version} ;
@@ -68,25 +64,22 @@ while [ $# -gt 0 ] ; do
shift ;;
--public)
SAE= ;
- WITH_LADSPA=1;
WITH_HARRISON_LV2=1 ;
WITH_X42_LV2=1 ;
PRODUCT_PKG_DIR=Ardour;
APPNAME=Ardour ;
shift ;;
--allinone) SAE= ;
- WITH_LADSPA=1;
STRIP= ;
PRODUCT_PKG_DIR=Ardour ;
shift ;;
- --test) SAE= ; WITH_LADSPA=; STRIP= ; shift ;;
+ --test) SAE= ; STRIP= ; shift ;;
#
# specific build flags
#
--noharvid) WITH_HARVID= ; shift ;;
- --noladspa) WITH_LADSPA= ; shift ;;
--nostrip) STRIP= ; shift ;;
--sysdeps) PRINT_SYSDEPS=1; shift ;;
--nls) WITH_NLS=1 ; shift ;;
@@ -348,20 +341,6 @@ cp $GTKSTACK_ROOT/lib/gtk-2.0/2.10.0/engines/libpixmap.so $Frameworks
(cd $GTK_ENGINE_DIR && ln -s ../../libpixmap.so)
-if test x$WITH_LADSPA != x ; then
- if test x$SAE != x ; then
- plugdir=sae_ladspa
- elif test x$MIXBUS != x ; then
- plugdir=mixbus_ladspa
- else
- plugdir=ladspa
- fi
- if [ -d $plugdir -a "x$(ls $plugdir)" != x ] ; then
- echo "Copying `ls $plugdir | wc -l` plugins ..."
- cp -r $plugdir/* $Plugins
- fi
-fi
-
# Control Surface shared libraries
cp $BUILD_ROOT/libs/surfaces/*/libardour_*.dylib $Surfaces
cp $BUILD_ROOT/libs/surfaces/control_protocol/libardourcp*.dylib $Frameworks