aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/cmake.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/cmake.rb b/Library/Formula/cmake.rb
index 8cd08d4bd..62d829a8e 100644
--- a/Library/Formula/cmake.rb
+++ b/Library/Formula/cmake.rb
@@ -1,8 +1,8 @@
require 'formula'
class Cmake <Formula
- url 'http://www.cmake.org/files/v2.8/cmake-2.8.1.tar.gz'
- md5 'feadc2e5ebbfed0efc90178583503725'
+ url 'http://www.cmake.org/files/v2.8/cmake-2.8.2.tar.gz'
+ md5 '8c967d5264657a798f22ee23976ff0d9'
homepage 'http://www.cmake.org/'
def install
@@ -18,7 +18,8 @@ class Cmake <Formula
"--datadir=/share/cmake",
"--docdir=/share/doc/cmake",
"--mandir=/share/man"
- system "make" # Separate steps, or compile fails on Mac Pro
+ ENV.j1 # There appear to be parallelism issues.
+ system "make"
system "make install"
end
end