blob: cbe6b0655f6f447c8aa14c26f6afbc5bae35bd4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
require 'formula'
class Armadillo < Formula
homepage 'http://arma.sourceforge.net/'
url 'http://sourceforge.net/projects/arma/files/armadillo-3.2.1.tar.gz'
sha1 'd331fd1707ea51be19624a251780d26dc9b29227'
depends_on 'cmake' => :build
depends_on 'boost'
def install
system "cmake", ".", *std_cmake_args
system "make install"
end
end
|