18 lines
426 B
Ruby
18 lines
426 B
Ruby
require 'formula'
|
|
|
|
class Yajl <Formula
|
|
homepage 'http://lloyd.github.com/yajl/'
|
|
url 'http://cloud.github.com/downloads/lloyd/yajl/yajl-1.0.7.tar.gz'
|
|
md5 'a4436163408fe9b8c9545ca028ef1b4f'
|
|
|
|
# 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
|