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
|
2013-01-27 22:37:22 +00:00
|
|
|
def expat_framework
|
|
|
|
'/Library/Frameworks/expat.framework'
|
|
|
|
end
|
|
|
|
|
2013-01-20 02:45:59 +00:00
|
|
|
satisfy :build_env => false do
|
2013-01-27 22:37:22 +00:00
|
|
|
not File.exist? expat_framework
|
2013-01-20 02:45:59 +00:00
|
|
|
end
|
|
|
|
|
2012-04-28 18:23:45 +00:00
|
|
|
def message; <<-EOS.undent
|
2013-01-27 22:37:22 +00:00
|
|
|
Detected #{expat_framework}
|
2012-04-28 18:23:45 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Cmake < Formula
|
2009-11-30 13:57:36 +00:00
|
|
|
homepage 'http://www.cmake.org/'
|
2013-11-11 17:35:22 +00:00
|
|
|
url 'http://www.cmake.org/files/v2.8/cmake-2.8.12.1.tar.gz'
|
|
|
|
sha1 '5661a607acbce7c16bb5f15ff2895fa5ca53a4da'
|
2013-05-25 13:34:08 +00:00
|
|
|
|
2013-08-08 09:46:22 +00:00
|
|
|
head 'http://cmake.org/cmake.git'
|
|
|
|
|
2013-01-27 22:41:47 +00:00
|
|
|
depends_on NoExpatFramework
|
2012-04-28 18:23:45 +00:00
|
|
|
|
2009-06-04 18:21:19 +00:00
|
|
|
def install
|
2012-07-11 06:25:57 +00:00
|
|
|
args = %W[
|
|
|
|
--prefix=#{prefix}
|
|
|
|
--system-libs
|
|
|
|
--no-system-libarchive
|
|
|
|
--datadir=/share/cmake
|
|
|
|
--docdir=/share/doc/cmake
|
|
|
|
--mandir=/share/man
|
|
|
|
]
|
|
|
|
|
|
|
|
system "./bootstrap", *args
|
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
|
|
|
|
2013-01-27 22:37:22 +00:00
|
|
|
test do
|
2013-06-08 23:33:00 +00:00
|
|
|
(testpath/'CMakeLists.txt').write('find_package(Ruby)')
|
2013-01-27 22:37:22 +00:00
|
|
|
system "#{bin}/cmake", '.'
|
2012-04-19 20:55:15 +00:00
|
|
|
end
|
2009-11-30 13:57:36 +00:00
|
|
|
end
|