diff options
| author | Francisco Facioni | 2013-11-12 16:43:32 -0300 |
|---|---|---|
| committer | Adam Vandenberg | 2013-11-12 21:45:37 -0800 |
| commit | 59427500f2324690ca7b13d498e51d3d80bbfe68 (patch) | |
| tree | 3fcc3f242256778d44e3bc0c458519fe8714c733 | |
| parent | 359a47cee098289f7a825944777a09b9ce3e5b54 (diff) | |
| download | homebrew-59427500f2324690ca7b13d498e51d3d80bbfe68.tar.bz2 | |
json_spirit 4.07
Closes #24227.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
| -rw-r--r-- | Library/Formula/json_spirit.rb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Library/Formula/json_spirit.rb b/Library/Formula/json_spirit.rb index 1836a91db..8f05552e1 100644 --- a/Library/Formula/json_spirit.rb +++ b/Library/Formula/json_spirit.rb @@ -2,14 +2,17 @@ require 'formula' class JsonSpirit < Formula homepage 'http://www.codeproject.com/KB/recipes/JSON_Spirit.aspx' - url 'https://uwe-arzt.de/files/json_spirit_v4.04.zip' - sha1 '5e92f0b337c43104faaf23f082d4c6763986bdd1' + url 'https://github.com/png85/json_spirit/archive/json_spirit-4.07.zip' + sha1 'e7055cb8fd596fc89b73e6898d8162a56fd80ec7' depends_on 'boost' depends_on 'cmake' => :build def install - system "cmake", ".", *std_cmake_args + args = std_cmake_args + args << "-DBUILD_STATIC_LIBRARIES=ON" + + system "cmake", *args system "make install" end end |
