homebrew-core/Formula/armadillo.rb
Yan Zhou db6c617161 Armadillo 3.4.3
Closes Homebrew/homebrew#15330.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-10-06 09:18:49 -07: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.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