Skip to content

Commit bc8d2d0

Browse files
committed
Update packaging scripts for JUCE 5
1 parent 9246401 commit bc8d2d0

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

DevScripts/package_mac.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
#!/bin/bash
22
VERSION=`cat resources/version.txt`
33
FOLDERLIST="../ProtoplugFiles
4-
../Bin/mac/Release/Lua Protoplug Fx.vst
5-
../Bin/mac/Release/Lua Protoplug Fx.component
6-
../Bin/mac/Release/Lua Protoplug Gen.vst
7-
../Bin/mac/Release/Lua Protoplug Gen.component"
4+
../Bin/mac/Lua Protoplug Fx.vst
5+
../Bin/mac/Lua Protoplug Fx.component
6+
../Bin/mac/Lua Protoplug Gen.vst
7+
../Bin/mac/Lua Protoplug Gen.component"
88
TDMG_SRC="resources/protoplug_template.dmg"
99
TDMG_MOUNT="/Volumes/Lua Protoplug"
1010
TDMG_TMP="/tmp/protoplug_temp.dmg"
1111
TDMG_DST="../Bin/packaged/protoplug-$VERSION-osx.dmg"
1212

1313
PACKAGELIBDIR="$HOME/Documents/ProtoplugFiles/lib/"
14-
PACKAGELIBS="libluajit-5.1.so libfftw3-3.so"
14+
PACKAGELIBS="libluajit-5.1.so libfftw3.3.dylib"
1515

1616
echo "Packaging libs..."
1717
mkdir -p ../ProtoplugFiles/lib

DevScripts/package_win.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@
2828
@copy /Y C:\Windows\SysWOW64\libfftw3-3.dll ..\ProtoplugFiles\lib\
2929
@copy /Y C:\Windows\SysWOW64\lua51.dll ..\ProtoplugFiles\lib\
3030
@echo Creating 32-bit package...
31-
@7z a ..\Bin\packaged\protoplug-%VERSION%-win32.zip "..\Bin\win32\Lua Protoplug Fx.dll" "..\Bin\win32\Lua Protoplug Gen.dll" ..\ProtoplugFiles
31+
@7z a ..\Bin\packaged\protoplug-%VERSION%-win32.zip "..\Bin\win32\VST\Lua Protoplug Fx.dll" "..\Bin\win32\VST\Lua Protoplug Gen.dll" ..\ProtoplugFiles
3232

3333
@echo Copying 64-bit libs for packaging...
3434
@copy /Y C:\Windows\System32\libfftw3-3.dll ..\ProtoplugFiles\lib\
3535
@copy /Y C:\Windows\System32\lua51.dll ..\ProtoplugFiles\lib\
3636
@echo Creating 64-bit package...
37-
@7z a ..\Bin\packaged\protoplug-%VERSION%-win64.zip "..\Bin\win64\Lua Protoplug Fx (x64).dll" "..\Bin\win64\Lua Protoplug Gen (x64).dll" ..\ProtoplugFiles
37+
@7z a ..\Bin\packaged\protoplug-%VERSION%-win64.zip "..\Bin\win64\VST\Lua Protoplug Fx (x64).dll" "..\Bin\win64\VST\Lua Protoplug Gen (x64).dll" ..\ProtoplugFiles
3838

3939
@echo Cleaning up...
4040
@del ..\ProtoplugFiles\lib\libfftw3-3.dll

0 commit comments

Comments
 (0)