32 lines
1.2 KiB
Ruby
32 lines
1.2 KiB
Ruby
class Rapidjson < Formula
|
|
desc "JSON parser/generator for C++ with SAX and DOM style APIs"
|
|
homepage "https://miloyip.github.io/rapidjson/"
|
|
url "https://github.com/miloyip/rapidjson/archive/v1.1.0.tar.gz"
|
|
sha256 "bf7ced29704a1e696fbccf2a2b4ea068e7774fa37f6d7dd4039d0787f8bed98e"
|
|
head "https://github.com/miloyip/rapidjson.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "9fbe96e76e21457931a5e2fff343833b84941e2387ab02212946ad71665c3f6f" => :sierra
|
|
sha256 "d0b949a9bd043535e2ff3e032b45b26de0083d319bc094db7ccc1edfea6cbdb3" => :el_capitan
|
|
sha256 "252ec61e7d5cba129a888bb566d4f2b61bd1bd2886de637f48afa638e6764007" => :yosemite
|
|
sha256 "806e4c788a675bbb0cff3cc9af68f8cdf46ac3d5bf49a47a94b331cc67ca0f4d" => :mavericks
|
|
end
|
|
|
|
option "without-docs", "Don't build documentation"
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "doxygen" => :build if build.with? "docs"
|
|
|
|
def install
|
|
args = std_cmake_args
|
|
args << "-DRAPIDJSON_BUILD_DOC=OFF" if build.without? "docs"
|
|
system "cmake", ".", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
system ENV.cxx, "#{share}/doc/RapidJSON/examples/capitalize/capitalize.cpp", "-o", "capitalize"
|
|
assert_equal '{"A":"B"}', pipe_output("./capitalize", '{"a":"b"}')
|
|
end
|
|
end
|