aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorFrancisco Facioni2013-11-13 12:09:46 -0300
committerAdam Vandenberg2013-11-13 21:09:49 -0800
commitf331667b46dcf1efd15f7f97fa8de73cc959749d (patch)
treef86befd2a804ca05b42fce30824e3a5e1b27e3e4 /Library
parent316fcdbcea551f2c90c67a2b4ae8a210537b1d35 (diff)
downloadhomebrew-f331667b46dcf1efd15f7f97fa8de73cc959749d.tar.bz2
json_spirit dylib generation + static
Closes #24260. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/json_spirit.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/Library/Formula/json_spirit.rb b/Library/Formula/json_spirit.rb
index 8f05552e1..8c4d21c1b 100644
--- a/Library/Formula/json_spirit.rb
+++ b/Library/Formula/json_spirit.rb
@@ -13,6 +13,11 @@ class JsonSpirit < Formula
args << "-DBUILD_STATIC_LIBRARIES=ON"
system "cmake", *args
+ system "make"
+
+ args = std_cmake_args
+ args << "-DBUILD_STATIC_LIBRARIES=OFF"
+ system "cmake", *args
system "make install"
end
end