aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/eigen.rb
blob: 58956aba406b3f93806c7149b0498c1b1377e3e8 (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.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