aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/armadillo.rb
blob: 63670a61615444968cc8f566433e84456e70efe0 (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://sourceforge.net/projects/arma/files/armadillo-3.6.2.tar.gz'
  sha1 'c04749d59b3915e337d90573e58fb60640c72605'

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

  def install
    system "cmake", ".", *std_cmake_args
    system "make install"
  end
end