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

class Armadillo < Formula
  url 'http://downloads.sourceforge.net/project/arma/armadillo-2.2.3.tar.gz'
  homepage 'http://arma.sourceforge.net/'
  md5 '5966ec93a5840c36765430b61c8d50b2'

  depends_on 'cmake' => :build
  depends_on 'boost'

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

end