48c3eca291
Closes Homebrew/homebrew#29383.
26 lines
714 B
Ruby
26 lines
714 B
Ruby
require "formula"
|
|
|
|
class JsonC < Formula
|
|
homepage "https://github.com/json-c/json-c/wiki"
|
|
url "https://github.com/json-c/json-c/archive/json-c-0.12-20140410.tar.gz"
|
|
version "0.12"
|
|
sha1 "b33872f8b2837c7909e9bd8734855669c57a67ce"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "31aab221bbee3c5fb73739a80befc373576ed382" => :mavericks
|
|
sha1 "b37a76d7912266e957d88e3a1fc78a65b852efcd" => :mountain_lion
|
|
sha1 "ee13acb15b713bd2dff8d8c9424e90f7c0a78d6f" => :lion
|
|
end
|
|
|
|
option :universal
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
ENV.deparallelize
|
|
system "make install"
|
|
end
|
|
end
|