homebrew-core/Formula/armadillo.rb
Brett Koonce 383fd5607e armadillo 3.6.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-12-14 09:26:15 -08:00

15 lines
356 B
Ruby

require 'formula'
class Armadillo < Formula
homepage 'http://arma.sourceforge.net/'
url 'http://sourceforge.net/projects/arma/files/armadillo-3.6.0.tar.gz'
sha1 'f2a29c78d3c18a48187ef9fc15011d89b2c5268e'
depends_on 'cmake' => :build
depends_on 'boost'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end