blob: e888bdcc813a986b2d7ecef9cf68e042ddf22087 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class JsonC < Formula
homepage 'https://github.com/json-c/json-c/wiki'
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/'json').install 'json_object_iterator.h'
end
end
|