homebrew-core/Formula/armadillo.rb
Brett Koonce 8454926549 armadillo 3.800.2
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-03-28 21:29:18 -07:00

15 lines
358 B
Ruby

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