blob: a4805fafad3b9d6504be56996882a549258be39b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | 
require 'formula'
# Stick with 0.10; PostGIS doesn't build against 0.11
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
  |