diff options
| author | Stephen Bannasch | 2012-01-09 13:36:48 -0500 |
|---|---|---|
| committer | Mike McQuaid | 2012-01-16 20:49:02 +0000 |
| commit | 0ac000ffe75980c858c7d2ada8706ee4cc767f9d (patch) | |
| tree | 0e1aea386304a2c218f588f84b45745366731ffe /Library/Formula | |
| parent | 3e4335894d32b39119f6f02b9f0106f73c3ac6ef (diff) | |
| download | homebrew-0ac000ffe75980c858c7d2ada8706ee4cc767f9d.tar.bz2 | |
New Formula: JsonSpirit
JsonSpirit is a C++ JSON Parser/Generator Implemented with Boost Spirit
http://www.codeproject.com/KB/recipes/JSON_Spirit.aspx
Closes #9507.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/json_spirit.rb | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/json_spirit.rb b/Library/Formula/json_spirit.rb new file mode 100644 index 000000000..60523cb06 --- /dev/null +++ b/Library/Formula/json_spirit.rb @@ -0,0 +1,16 @@ +require 'formula' + +class JsonSpirit < Formula + url 'https://uwe-arzt.de/files/json_spirit_v4.04.zip' + homepage 'http://www.codeproject.com/KB/recipes/JSON_Spirit.aspx' + md5 '0729870198528a28c21c5ee588d032a4' + + depends_on 'boost' + depends_on 'cmake' => :build + + def install + system "cmake . #{std_cmake_parameters}" + system "make install" + end + +end |
