Browse Source

package/homebrew: make this work on ARM Macs as well.

Thank you, Homebrew! FFS!
pull/14/head
Vladimír Vondruš 5 years ago
parent
commit
6be3566e9b
  1. 5
      package/homebrew/magnum-bindings.rb

5
package/homebrew/magnum-bindings.rb

@ -25,6 +25,11 @@ class MagnumBindings < Formula
cd "build" do
system "cmake",
*std_cmake_args,
# Without this, ARM builds will try to look for dependencies in
# /usr/local/lib and /usr/lib (which are the default locations) instead
# of /opt/homebrew/lib which is dedicated for ARM binaries. Please
# complain to Homebrew about this insane non-obvious filesystem layout.
"-DCMAKE_INSTALL_NAME_DIR:STRING=#{lib}",
"-DWITH_PYTHON=ON",
".."
system "cmake", "--build", "."

Loading…
Cancel
Save