mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
cdbd3a9c09
It looks like Homebrew has deprecated some syntax making CMake formula invalid, now a for of the formula is used.
12 lines
469 B
Bash
Executable File
12 lines
469 B
Bash
Executable File
#!/bin/sh -e
|
|
|
|
brew update
|
|
brew unlink cmake || true
|
|
brew install https://gist.githubusercontent.com/nikolaykasyanov/f36da224bdef42025e480f99fa21a82d/raw/7dd8b5ed2750198757f81c6bc6456e03541999bd/cmake.rb
|
|
brew switch cmake 3.12.4
|
|
brew outdated pkgconfig || brew upgrade pkgconfig
|
|
brew install qt
|
|
|
|
curl -fSL -R -J https://downloads.openmw.org/osx/dependencies/openmw-deps-110f3d3.zip -o ~/openmw-deps.zip
|
|
unzip -o ~/openmw-deps.zip -d /private/tmp/openmw-deps > /dev/null
|