mirror of
https://github.com/outbackdingo/UltraGrid.git
synced 2026-03-21 12:40:19 +00:00
- do not use cmake (speed, compat) - shallow clone - parallel make according to num logical cores
14 lines
376 B
Bash
Executable File
14 lines
376 B
Bash
Executable File
#!/bin/sh -eu
|
|
|
|
# Use dylib bundler v2 from https://github.com/SCG82/macdylibbundler instead of the
|
|
# original because it has far better execution time (and perhaps also other improvements)
|
|
|
|
cd /tmp
|
|
git clone --depth 1 https://github.com/SCG82/macdylibbundler.git
|
|
cd macdylibbundler
|
|
make -j $(sysctl -n hw.ncpu)
|
|
sudo cp dylibbundler /usr/local/bin
|
|
cd -
|
|
rm -rf macdylibbundler
|
|
|