2011-10-06 19:08:30 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Armadillo < Formula
|
|
|
|
homepage 'http://arma.sourceforge.net/'
|
2012-12-14 00:30:36 +00:00
|
|
|
url 'http://sourceforge.net/projects/arma/files/armadillo-3.6.0.tar.gz'
|
|
|
|
sha1 'f2a29c78d3c18a48187ef9fc15011d89b2c5268e'
|
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
|