homebrew-core/Formula/cmake.rb

59 lines
1.7 KiB
Ruby
Raw Normal View History

require 'formula'
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
url 'http://www.cmake.org/files/v2.8/cmake-2.8.8.tar.gz'
md5 'ba74b22c788a0c8547976b880cd02b17'
homepage 'http://www.cmake.org/'
bottle do
version 3
sha1 'bdfb5fcd6743d65f6cfe00b314f9d3f1049e902b' => :lion
sha1 '3a77fc17a7b1d3cceabddcca5c126c6b911c2f90' => :snowleopard
end
depends_on NoExpatFramework.new
def patches
[
# Correct FindPkgConfig found variable. Remove for CMake 2.8.9.
"https://github.com/Kitware/CMake/commit/3ea850.patch",
# Workaround DeployQt4 issue. Remove for CMake 2.8.9.
"https://github.com/Kitware/CMake/commit/374b9b.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"
]
end
def install
system "./bootstrap", "--prefix=#{prefix}",
"--system-libs",
2011-01-13 18:15:10 +00:00
"--no-system-libarchive",
"--datadir=/share/cmake",
"--docdir=/share/doc/cmake",
"--mandir=/share/man"
2010-07-15 04:50:29 +00:00
system "make"
system "make install"
end
def test
system "#{bin}/cmake", "-E", "echo", "testing"
end
end