aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/armadillo.rb
blob: e24c8f4fe986525d30870ceec60dcd2ddc4afc8e (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.4.tar.gz'
  sha1 'e293a56695e7447cf5caa395932f1f0d41e13ffc'

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

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