Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

121 lines
4.3KB

  1. #!/bin/bash
  2. ### fluidsynth.pc:
  3. # -lglib-2.0 -lgthread-2.0 -lsndfile -lFLAC -lvorbisenc -lvorbis -logg -lm -ldsound -lwinmm -lole32 -lws2_32
  4. ### linuxsampler.pc:
  5. # -L${prefix}/lib/libgig -lgig -lsndfile -lFLAC -lvorbisenc -lvorbis -logg -lm -lrpcrt4
  6. set -e
  7. MINGW=i686-w64-mingw32
  8. MINGW_PATH=/opt/mingw32
  9. JOBS="-j 8"
  10. if [ ! -f Makefile ]; then
  11. cd ../..
  12. fi
  13. export WIN32=true
  14. export PATH=$MINGW_PATH/bin:$MINGW_PATH/$MINGW/bin:$PATH
  15. export CC=$MINGW-gcc
  16. export CXX=$MINGW-g++
  17. export WINDRES=$MINGW-windres
  18. export CFLAGS="-DBUILDING_CARLA_FOR_WINDOWS -DPTW32_STATIC_LIB"
  19. export CXXFLAGS="$CFLAGS -DFLUIDSYNTH_NOT_A_DLL"
  20. unset CPPFLAGS
  21. unset LDFLAGS
  22. export WINEARCH=win32
  23. export WINEPREFIX=~/.winepy3_x86
  24. export PYTHON_EXE="wine C:\\\\Python34\\\\python.exe"
  25. export CXFREEZE="$PYTHON_EXE C:\\\\Python34\\\\Scripts\\\\cxfreeze"
  26. export PYUIC="$PYTHON_EXE -m PyQt5.uic.pyuic"
  27. export PYRCC="wine C:\\\\Python34\\\\Lib\\\\site-packages\\\\PyQt5\\\\pyrcc5.exe"
  28. export DEFAULT_QT=5
  29. make BUILDING_FOR_WINDOWS=true $JOBS
  30. export PYTHONPATH=`pwd`/source
  31. rm -rf ./data/windows/Carla
  32. mkdir -p ./data/windows/Carla/Debug
  33. cp ./source/carla ./source/Carla.pyw
  34. $PYTHON_EXE ./data/windows/app-console.py build_exe
  35. mv ./data/windows/Carla/carla.exe ./data/windows/Carla/Debug/Carla.exe
  36. $PYTHON_EXE ./data/windows/app-gui.py build_exe
  37. rm -f ./source/Carla.pyw
  38. cd data/windows/
  39. rm -rf dist
  40. $CXFREEZE ../../bin/resources/bigmeter-ui
  41. $CXFREEZE ../../bin/resources/midipattern-ui
  42. $CXFREEZE ../../bin/resources/notes-ui
  43. $CXFREEZE ../../bin/resources/carla-plugin
  44. $CXFREEZE ../../bin/resources/carla-plugin-patchbay
  45. cp ../../bin/*.dll Carla/
  46. cp ../../bin/*.exe Carla/
  47. rm Carla/carla-bridge-lv2-windows.exe
  48. rm Carla/carla-discovery-native.exe
  49. rm Carla/carla-lv2-export.exe
  50. rm -f Carla/PyQt5.Qsci.pyd Carla/PyQt5.QtNetwork.pyd Carla/PyQt5.QtSql.pyd Carla/PyQt5.QtTest.pyd Carla/PyQt5.QtXml.pyd
  51. rm -f dist/PyQt5.Qsci.pyd dist/PyQt5.QtNetwork.pyd dist/PyQt5.QtSql.pyd dist/PyQt5.QtTest.pyd dist/PyQt5.QtXml.pyd
  52. cp $WINEPREFIX/drive_c/Python34/python34.dll Carla/
  53. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/icu*.dll Carla/
  54. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/libEGL.dll Carla/
  55. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/libGLESv2.dll Carla/
  56. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/Qt5Core.dll Carla/
  57. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/Qt5Gui.dll Carla/
  58. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/Qt5Widgets.dll Carla/
  59. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/Qt5OpenGL.dll Carla/
  60. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/Qt5Svg.dll Carla/
  61. mv dist Carla/resources
  62. cp $WINEPREFIX/drive_c/Python34/python34.dll Carla/resources/
  63. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/icu*.dll Carla/resources/
  64. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/libEGL.dll Carla/resources/
  65. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/libGLESv2.dll Carla/resources/
  66. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/Qt5Core.dll Carla/resources/
  67. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/Qt5Gui.dll Carla/resources/
  68. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/Qt5Widgets.dll Carla/resources/
  69. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/Qt5OpenGL.dll Carla/resources/
  70. cp $WINEPREFIX/drive_c/Python34/Lib/site-packages/PyQt5/Qt5Svg.dll Carla/resources/
  71. # Build unzipfx
  72. make -C unzipfx-carla -f Makefile.win32 clean
  73. make -C unzipfx-carla -f Makefile.win32
  74. # Create zip of Carla
  75. rm -f Carla.zip CarlaControl.zip
  76. zip -r -9 Carla.zip Carla
  77. # Create static build
  78. rm -f Carla.exe CarlaControl.exe
  79. cat unzipfx-carla/unzipfx2cat.exe Carla.zip > Carla.exe
  80. chmod +x Carla.exe
  81. # Cleanup
  82. rm -f Carla.zip CarlaControl.zip
  83. # Create release zip
  84. rm -rf Carla-2.0beta5-win32
  85. mkdir Carla-2.0beta5-win32
  86. mkdir Carla-2.0beta5-win32/vcredist
  87. cp Carla.exe README.txt Carla-2.0beta5-win32
  88. cp ~/.cache/winetricks/vcrun2010/vcredist_x86.exe Carla-2.0beta5-win32/vcredist
  89. zip -r -9 Carla-2.0beta5-win32.zip Carla-2.0beta5-win32
  90. cd ../..
  91. # Testing:
  92. echo "export WINEPREFIX=~/.winepy3_x86"
  93. echo "$PYTHON_EXE ./source/carla"