blob: d905760098aa7b6d974713973069389b5dc69316 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'brewkit'
class Yajl <Formula
@homepage='http://lloyd.github.com/yajl/'
@url='http://github.com/lloyd/yajl/tarball/1.0.5'
@md5='f4a3cbc764c43231ed1aedc54438b69b'
def deps
BinaryDep.new 'cmake'
end
def install
ENV.deparallelize
# I have pushed this fix upstream
inreplace 'configure', 'cmake \.\.', "cmake -DCMAKE_INSTALL_PREFIX='#{prefix}' \.\." if @version == "1.0.5"
system "./configure --prefix '#{prefix}'"
system "make install"
end
end
|