aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMartin Kuehl2010-03-01 18:20:20 +0100
committerAdam Vandenberg2010-03-01 11:35:38 -0800
commitbf52e5a04e667d6e604dd675d1bb7e8af78c792e (patch)
tree169ce03169a9433b34b18a59b62790794acbfaa9 /Library/Formula
parent45ce0c963a52293063432674d5c360ebe65254e2 (diff)
downloadhomebrew-bf52e5a04e667d6e604dd675d1bb7e8af78c792e.tar.bz2
Update yajl to 1.0.9 and fix the formula.
Add missing `=` in call to `configure`. Install header files. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/yajl.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/Library/Formula/yajl.rb b/Library/Formula/yajl.rb
index 6566d1c07..b222b1eed 100644
--- a/Library/Formula/yajl.rb
+++ b/Library/Formula/yajl.rb
@@ -2,8 +2,8 @@ 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'
+ url 'http://cloud.github.com/downloads/lloyd/yajl/yajl-1.0.9.tar.gz'
+ md5 '8643ff2fef762029e51c86882a4d0fc6'
# Configure uses cmake, even though it looks like we're
# just using autotools below.
@@ -12,7 +12,8 @@ class Yajl <Formula
def install
ENV.deparallelize
- system "./configure", "--prefix#{prefix}"
+ system "./configure", "--prefix=#{prefix}"
system "make install"
+ (include + 'yajl').install Dir['src/api/*.h']
end
-end \ No newline at end of file
+end