3bfe41e88f
Closes Homebrew/homebrew#35324. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
40 lines
1.1 KiB
Ruby
40 lines
1.1 KiB
Ruby
class Jansson < Formula
|
|
homepage "http://www.digip.org/jansson/"
|
|
url "http://www.digip.org/jansson/releases/jansson-2.7.tar.gz"
|
|
sha1 "7d8686d84fd46c7c28d70bf2d5e8961bc002845e"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha1 "7c9087f9ce0f65276339832bbbf7f6f813eed03d" => :yosemite
|
|
sha1 "5c0224602ecb036cdc1e636cff2895094fafac04" => :mavericks
|
|
sha1 "876f6358e0277ddeec6d36c647723452ccf3adfa" => :mountain_lion
|
|
end
|
|
|
|
option :universal
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<-EOS.undent
|
|
#include <jansson.h>
|
|
#include <assert.h>
|
|
|
|
int main()
|
|
{
|
|
json_t *json;
|
|
json_error_t error;
|
|
json = json_loads("\\"foo\\"", JSON_DECODE_ANY, &error);
|
|
assert(json && json_is_string(json));
|
|
json_decref(json);
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.c", "-ljansson", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|