| @@ -1,19 +0,0 @@ | |||||
| [binaries] | |||||
| name = 'macos-old' | |||||
| c = 'i686-apple-darwin10-gcc' | |||||
| cpp = 'i686-apple-darwin10-g++' | |||||
| ar = 'i686-apple-darwin10-gcc-ar' | |||||
| nm = 'i686-apple-darwin10-gcc-nm' | |||||
| ld = 'i686-apple-darwin10-ld' | |||||
| strip = 'i686-apple-darwin10-strip' | |||||
| pkgconfig = 'pkg-config' | |||||
| # exe_wrapper = 'darwine' | |||||
| [host_machine] | |||||
| system = 'macos' | |||||
| cpu_family = 'x86_64' | |||||
| cpu = 'x86_64' | |||||
| endian = 'little' | |||||
| [properties] | |||||
| needs_exe_wrapper = true | |||||
| @@ -1,30 +0,0 @@ | |||||
| #!/bin/bash | |||||
| set -e | |||||
| if [ ! -f meson.build ]; then | |||||
| echo "run from top dir" | |||||
| exit 1 | |||||
| fi | |||||
| # legacy/compat repo | |||||
| pushd libs/juce-legacy | |||||
| if [ -d source ]; then | |||||
| mv source source.bak | |||||
| fi | |||||
| git clone git@github.com:DISTRHO/juce.git -b distrho-ports-compat source | |||||
| popd | |||||
| # main/juce6 repo | |||||
| pushd libs/juce-current | |||||
| if [ -d source ]; then | |||||
| mv source source.bak | |||||
| fi | |||||
| git clone git@github.com:DISTRHO/juce.git -b main source | |||||
| popd | |||||