Browse Source

Remove some old files

Signed-off-by: falkTX <falktx@falktx.com>
pull/128/head
falkTX 10 months ago
parent
commit
ae1d546829
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
2 changed files with 0 additions and 49 deletions
  1. +0
    -19
      scripts/meson/macos-old.ini
  2. +0
    -30
      scripts/setup-juce-repos.sh

+ 0
- 19
scripts/meson/macos-old.ini View File

@@ -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

+ 0
- 30
scripts/setup-juce-repos.sh View File

@@ -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

Loading…
Cancel
Save