aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/eigen.rb
blob: d9a83c1c72c49b35290d273f4676a3dc0e63f421 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class Eigen <Formula
  url 'http://bitbucket.org/eigen/eigen/get/2.0.12.tar.bz2'
  homepage 'http://eigen.tuxfamily.org/'
  md5 'd0195ac20bcd91602db8ca967a21e9ec'

  depends_on 'cmake' => :build

  def install
    system "cmake . #{std_cmake_parameters}"
    system "make install"
  end
end