aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/armadillo.rb
blob: 45eb84761620402b6281632366e51d43b3e4ef5f (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.4.3.tar.gz'
  sha1 'a89adc51fa01640bfe463d9120cae57b2c073f8e'

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

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