aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorChilledheart2014-06-03 18:16:21 +0800
committerMike McQuaid2014-06-03 12:21:02 +0100
commitb0f1ce1e70b8fb46e9256a7f57d7e16ea1912f73 (patch)
tree46e9d73ee23d6783b44587908e670e2e98ed15ca /Library/Formula
parent1ffafa54a642f8989cd38920aed9feebd7176f93 (diff)
downloadhomebrew-b0f1ce1e70b8fb46e9256a7f57d7e16ea1912f73.tar.bz2
yajl 2.1.0
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/yajl.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/yajl.rb b/Library/Formula/yajl.rb
index d67398b28..17f01425e 100644
--- a/Library/Formula/yajl.rb
+++ b/Library/Formula/yajl.rb
@@ -2,8 +2,8 @@ require 'formula'
class Yajl < Formula
homepage 'http://lloyd.github.io/yajl/'
- url 'https://github.com/lloyd/yajl/archive/2.0.4.tar.gz'
- sha256 '0e78f516dc53ecce7dc073f9a9bb0343186b58ef29dcd1dad74e5e853b216dd5'
+ url 'https://github.com/lloyd/yajl/archive/2.1.0.tar.gz'
+ sha256 '3fb73364a5a30efe615046d07e6db9d09fd2b41c763c5f7d3bfb121cd5c5ac5a'
bottle do
cellar :any
@@ -19,7 +19,7 @@ class Yajl < Formula
def install
ENV.deparallelize
- system "./configure", "--prefix=#{prefix}"
+ system "cmake", ".", *std_cmake_args
system "make install"
(include/'yajl').install Dir['src/api/*.h']
end