homebrew-core/Formula/eigen.rb
Robbie Shade 84b94d6cc9 Updated eigen to 2.0.15
Latest stable version is 2.0.15. Additionally 2.0.12 download didn't
match md5 sum.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-12-19 10:56:30 -08:00

14 lines
310 B
Ruby

require 'formula'
class Eigen <Formula
url 'http://bitbucket.org/eigen/eigen/get/2.0.15.tar.bz2'
homepage 'http://eigen.tuxfamily.org/'
md5 'a96fe69d652d7b3b1d990c99bbc518fb'
depends_on 'cmake' => :build
def install
system "cmake . #{std_cmake_parameters}"
system "make install"
end
end