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

class Armadillo < Formula
  homepage 'http://arma.sourceforge.net/'
  url 'http://downloads.sourceforge.net/project/arma/armadillo-3.0.2.tar.gz'
  md5 '2605d9fda2b8113e4d2afbeb104f953d'

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

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