diff options
Diffstat (limited to 'Library/Formula/json-c.rb')
| -rw-r--r-- | Library/Formula/json-c.rb | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Library/Formula/json-c.rb b/Library/Formula/json-c.rb index 97c7effa9..8c3dd20b4 100644 --- a/Library/Formula/json-c.rb +++ b/Library/Formula/json-c.rb @@ -2,12 +2,16 @@ require 'formula' class JsonC < Formula homepage 'https://github.com/json-c/json-c/wiki' - url 'http://oss.metaparadigm.com/json-c/json-c-0.9.tar.gz' - sha1 'daaf5eb960fa98e137abc5012f569b83c79be90f' + url 'https://github.com/downloads/json-c/json-c/json-c-0.10.tar.gz' + sha1 'f90f643c8455da21d57b3e8866868a944a93c596' def install system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}" system "make install" + + # The Makefile forgets to install this header. This is fixed upstream and + # can be pulled on the next release. + include.install 'json_object_iterator.h' end end |
