2011-10-06 19:08:30 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Armadillo < Formula
|
|
|
|
homepage 'http://arma.sourceforge.net/'
|
2013-01-03 04:37:02 +00:00
|
|
|
url 'http://sourceforge.net/projects/arma/files/armadillo-3.6.1.tar.gz'
|
|
|
|
sha1 'c3b34f2c240ca1da6e9e3728dc1ebd2d197a2071'
|
2011-10-06 19:08:30 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'boost'
|
|
|
|
|
|
|
|
def install
|
2012-05-22 21:37:04 +00:00
|
|
|
system "cmake", ".", *std_cmake_args
|
2011-10-06 19:08:30 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|