blob: d9d3ec3cc9455a99f52f4f6f9eeb27a81a055aaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  | 
require 'formula'
class Eigen < Formula
  homepage 'http://eigen.tuxfamily.org/'
  url 'http://bitbucket.org/eigen/eigen/get/3.2.2.tar.bz2'
  sha1 '1e1a85681777314805003db5469d1a00785c58df'
  bottle do
    cellar :any
    sha1 "5a64fff74d8c341cfcc36666810531261e0fd7a0" => :mavericks
    sha1 "28fb90c14195d63016ff9783cb4dd259fab257db" => :mountain_lion
    sha1 "7d09cae778259591337bf397b061fe7cd516c3a5" => :lion
  end
  head 'https://bitbucket.org/eigen/eigen', :using => :hg
  depends_on 'cmake' => :build
  option :universal
  def install
    ENV.universal_binary if build.universal?
    mkdir 'eigen-build' do
      args = std_cmake_args
      args.delete '-DCMAKE_BUILD_TYPE=None'
      args << '-DCMAKE_BUILD_TYPE=Release'
      args << "-Dpkg_config_libdir=#{lib}" << '..'
      system 'cmake', *args
      system 'make install'
    end
  end
end
  |