2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Yajl < Formula
|
2009-11-21 23:34:34 +00:00
|
|
|
homepage 'http://lloyd.github.com/yajl/'
|
2011-04-29 19:48:30 +00:00
|
|
|
url 'http://github.com/lloyd/yajl/tarball/2.0.2'
|
|
|
|
sha256 '4917049b7700e289d38e0ac82f63b7182a5dfc6cf21c5eb9a26d70b6d2e7b68b'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2009-11-21 23:34:34 +00:00
|
|
|
# Configure uses cmake, even though it looks like we're
|
|
|
|
# just using autotools below.
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'cmake' => :build
|
2009-06-04 18:21:19 +00:00
|
|
|
|
|
|
|
def install
|
2009-08-07 14:41:43 +00:00
|
|
|
ENV.deparallelize
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2010-03-01 17:20:20 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
2009-06-04 18:21:19 +00:00
|
|
|
system "make install"
|
2010-03-01 17:20:20 +00:00
|
|
|
(include + 'yajl').install Dir['src/api/*.h']
|
2009-06-04 18:21:19 +00:00
|
|
|
end
|
2010-03-01 17:20:20 +00:00
|
|
|
end
|