Cmake 2.8.2

This commit is contained in:
Adam Vandenberg 2010-07-14 21:50:29 -07:00
parent 4d3f990bda
commit 297b747090

View file

@ -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