homebrew-core/Formula/yajl.rb
ggironda 134f6a2125 Updates the YAJL formula and adds a Orderly formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-02-02 20:23:44 -08:00

18 lines
No EOL
425 B
Ruby

require 'formula'
class Yajl <Formula
homepage 'http://lloyd.github.com/yajl/'
url 'http://cloud.github.com/downloads/lloyd/yajl/yajl-1.0.8.tar.gz'
md5 '26116d41b6466f6b4da7d9e8450f2200'
# 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