homebrew-core/Formula/yajl.rb

19 lines
426 B
Ruby
Raw Normal View History

require 'formula'
class Yajl <Formula
2009-11-21 23:34:34 +00:00
homepage 'http://lloyd.github.com/yajl/'
url 'http://cloud.github.com/downloads/lloyd/yajl/yajl-1.0.7.tar.gz'
2009-12-16 13:21:29 +00:00
md5 'a4436163408fe9b8c9545ca028ef1b4f'
2009-11-21 23:34:34 +00:00
# Configure uses cmake, even though it looks like we're
# just using autotools below.
depends_on 'cmake'
def install
ENV.deparallelize
system "./configure --prefix '#{prefix}'"
system "make install"
end
end