homebrew-core/Formula/json_spirit.rb
Jack Nagel c7630f5ff4 Use new std_cmake_args method
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-22 22:22:00 -05:00

15 lines
356 B
Ruby

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'
md5 '0729870198528a28c21c5ee588d032a4'
depends_on 'boost'
depends_on 'cmake' => :build
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end