2011-10-06 19:08:30 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Armadillo < Formula
|
2011-12-14 12:08:54 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/arma/armadillo-2.4.2.tar.gz'
|
2011-10-06 19:08:30 +00:00
|
|
|
homepage 'http://arma.sourceforge.net/'
|
2011-12-14 12:08:54 +00:00
|
|
|
md5 '9b5c255a24ca6c2fe507797b9bad5d2e'
|
2011-10-06 19:08:30 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'boost'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "cmake . #{std_cmake_parameters}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|