2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-04 18:21:19 +00:00
|
|
|
|
2012-04-28 18:23:45 +00:00
|
|
|
class NoExpatFramework < Requirement
|
|
|
|
def message; <<-EOS.undent
|
|
|
|
Detected /Library/Frameworks/expat.framework
|
|
|
|
|
|
|
|
This will be picked up by CMake's build system and likely cause the
|
|
|
|
build to fail, trying to link to a 32-bit version of expat.
|
|
|
|
|
|
|
|
You may need to move this file out of the way to compile CMake.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
def satisfied?
|
|
|
|
not File.exist? "/Library/Frameworks/expat.framework"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Cmake < Formula
|
2012-04-19 20:55:15 +00:00
|
|
|
url 'http://www.cmake.org/files/v2.8/cmake-2.8.8.tar.gz'
|
|
|
|
md5 'ba74b22c788a0c8547976b880cd02b17'
|
2009-11-30 13:57:36 +00:00
|
|
|
homepage 'http://www.cmake.org/'
|
2012-01-23 04:32:15 +00:00
|
|
|
|
|
|
|
bottle do
|
2012-06-03 16:59:58 +00:00
|
|
|
version 2
|
|
|
|
sha1 '64de3916cea46cf98ff0853db401109394cfbd5d' => :lion
|
|
|
|
sha1 'da25300b55944c84e6a0c2e4efc57bb160a02806' => :snowleopard
|
2012-01-23 04:32:15 +00:00
|
|
|
end
|
2011-07-25 19:36:36 +00:00
|
|
|
|
2012-04-28 18:23:45 +00:00
|
|
|
depends_on NoExpatFramework.new
|
|
|
|
|
2012-04-28 01:36:00 +00:00
|
|
|
def patches
|
2012-05-29 22:54:29 +00:00
|
|
|
[
|
|
|
|
# Correct FindPkgConfig found variable. Remove for CMake 2.8.9.
|
|
|
|
"https://github.com/Kitware/CMake/commit/3ea850.patch",
|
|
|
|
# Protect the default value of CMAKE_FIND_FRAMEWORK so that it can be
|
|
|
|
# overridden from the command line. Remove for CMake 2.8.9.
|
|
|
|
"https://github.com/Kitware/CMake/commit/8b2fb3.patch"
|
|
|
|
]
|
2012-04-28 01:36:00 +00:00
|
|
|
end
|
|
|
|
|
2009-06-04 18:21:19 +00:00
|
|
|
def install
|
2009-08-07 14:41:43 +00:00
|
|
|
system "./bootstrap", "--prefix=#{prefix}",
|
|
|
|
"--system-libs",
|
2011-01-13 18:15:10 +00:00
|
|
|
"--no-system-libarchive",
|
2009-08-07 14:41:43 +00:00
|
|
|
"--datadir=/share/cmake",
|
|
|
|
"--docdir=/share/doc/cmake",
|
|
|
|
"--mandir=/share/man"
|
2010-07-15 04:50:29 +00:00
|
|
|
system "make"
|
2009-06-04 18:21:19 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
2012-04-19 20:55:15 +00:00
|
|
|
|
|
|
|
def test
|
2012-05-15 21:36:45 +00:00
|
|
|
system "#{bin}/cmake", "-E", "echo", "testing"
|
2012-04-19 20:55:15 +00:00
|
|
|
end
|
2009-11-30 13:57:36 +00:00
|
|
|
end
|