homebrew-core/Formula/json-c.rb
Charlie Sharpsteen 8a91f2a532 json-c: Fix header install location
A header file was accidentally installed to the top-level `include` folder
rather than `include/json`.
2012-09-30 10:12:19 -05:00

17 lines
543 B
Ruby

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