comparison deploy/osx/deploy.sh @ 626:fdcb31f2b559

Merge
author Chris Cannam
date Thu, 10 Oct 2019 13:45:24 +0100
parents bd18e52aa382
children
comparison
equal deleted inserted replaced
623:48802b1c9c1e 626:fdcb31f2b559
30 [0-9].[0-9].[0-9]) bundleVersion="$stem" ;; 30 [0-9].[0-9].[0-9]) bundleVersion="$stem" ;;
31 *) echo "Error: Version stem $stem (of version $version) is neither two- nor three-part number"; exit 1 ;; 31 *) echo "Error: Version stem $stem (of version $version) is neither two- nor three-part number"; exit 1 ;;
32 esac 32 esac
33 33
34 echo 34 echo
35 echo "Copying in plugins from libpyin.dylib and libchp.dylib." 35 echo "Copying in Vamp plugins."
36 36
37 cp libpyin.dylib "$source/Contents/Resources/pyin.dylib" 37 for plugin in chp pyin ; do
38 cp libchp.dylib "$source/Contents/Resources/chp.dylib" 38 cp "$plugin.dylib" "$source/Contents/Resources/"
39 done
39 40
40 echo 41 echo
41 echo "Copying in frameworks and plugins from Qt installation directory." 42 echo "Copying in frameworks and plugins from Qt installation directory."
42 43
43 deploy/osx/copy-qt.sh "$app" || exit 2 44 deploy/osx/copy-qt.sh "$app" || exit 2