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/'
|
2012-02-02 20:33:22 +00:00
|
|
|
url 'http://github.com/lloyd/yajl/tarball/2.0.4'
|
|
|
|
sha256 'c19b9691cf15f22e74d903cd06ac9ba5e1e216e6a1b82bfe787c3b48a25bc118'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2012-02-10 03:02:36 +00:00
|
|
|
# Configure uses cmake internally
|
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
|