homebrew-core/Formula/eigen.rb

21 lines
554 B
Ruby
Raw Normal View History

2010-03-18 15:43:45 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Eigen < Formula
url 'http://bitbucket.org/eigen/eigen/get/3.0.2.tar.bz2'
2010-03-18 15:43:45 +00:00
homepage 'http://eigen.tuxfamily.org/'
md5 '45ee4ac26b25ae7152bf1e7754497971'
2010-03-18 15:43:45 +00:00
depends_on 'cmake' => :build
2010-03-18 15:43:45 +00:00
def install
# http://eigen.tuxfamily.org/bz/show_bug.cgi?id=338
inreplace 'CMakeLists.txt', 'DESTINATION share/pkgconfig', 'DESTINATION lib/pkgconfig'
mkdir 'eigen-build'
Dir.chdir 'eigen-build' do
system "cmake .. #{std_cmake_parameters} -DCMAKE_BUILD_TYPE=Release"
system "make install"
end
2010-03-18 15:43:45 +00:00
end
end