homebrew-core/Formula/yajl.rb

18 lines
425 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.8.tar.gz'
md5 '26116d41b6466f6b4da7d9e8450f2200'
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