0ded4d4ead
"Armadillo is an open-source C++ linear algebra library (matrix maths) aiming towards a good balance between speed and ease of use. Integer, floating point and complex numbers are supported, as well as a subset of trigonometric and statistics functions. Various matrix decompositions are provided through optional integration with LAPACK, or one of its high performance drop-in replacements (such as MKL or ACML)." [http://arma.sourceforge.net/] Closes Homebrew/homebrew#8008. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
16 lines
355 B
Ruby
16 lines
355 B
Ruby
require 'formula'
|
|
|
|
class Armadillo < Formula
|
|
url 'http://downloads.sourceforge.net/project/arma/armadillo-2.2.3.tar.gz'
|
|
homepage 'http://arma.sourceforge.net/'
|
|
md5 '5966ec93a5840c36765430b61c8d50b2'
|
|
|
|
depends_on 'cmake' => :build
|
|
depends_on 'boost'
|
|
|
|
def install
|
|
system "cmake . #{std_cmake_parameters}"
|
|
system "make install"
|
|
end
|
|
|
|
end
|