50 lines
1.2 KiB
Ruby
50 lines
1.2 KiB
Ruby
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
|
|
|
|
|
|
class Cmake < Formula
|
|
homepage 'http://www.cmake.org/'
|
|
url 'http://www.cmake.org/files/v2.8/cmake-2.8.9.tar.gz'
|
|
sha1 'b96663c0757a5edfbddc410aabf7126a92131e2b'
|
|
|
|
bottle do
|
|
sha1 'ae7e0cf39556ea0a32e7bb7716ac820734ca7918' => :mountainlion
|
|
sha1 '6631aaeeafb9209e711508ad72727fbb4b5ab295' => :lion
|
|
sha1 'ea52f2a18b00f3404e8bf73c12c3da1d9a39f128' => :snowleopard
|
|
end
|
|
|
|
depends_on NoExpatFramework.new
|
|
|
|
def install
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--system-libs
|
|
--no-system-libarchive
|
|
--datadir=/share/cmake
|
|
--docdir=/share/doc/cmake
|
|
--mandir=/share/man
|
|
]
|
|
|
|
system "./bootstrap", *args
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
|
|
def test
|
|
system "#{bin}/cmake", "-E", "echo", "testing"
|
|
end
|
|
end
|