blob: e133bf7c03991301cbd00532a230423163e0b416 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
require 'formula'
class Simgrid < Formula
homepage 'http://simgrid.gforge.inria.fr'
url 'https://gforge.inria.fr/frs/download.php/29207/simgrid-3.6.2.tar.gz'
md5 '35b10c0fb6d47bdbbf19417ab0ab2e6c'
depends_on 'cmake' => :build
depends_on 'pcre'
depends_on 'graphviz'
fails_with :clang do
build 318
end
def install
system "cmake -Denable_debug=on -Denable_compile_optimizations=off #{std_cmake_parameters} ."
system "make install"
end
end
|