2012-01-27 15:23:05 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Simgrid < Formula
|
|
|
|
homepage 'http://simgrid.gforge.inria.fr'
|
2013-11-10 04:27:43 +00:00
|
|
|
url 'http://gforge.inria.fr/frs/download.php/32047/SimGrid-3.9.tar.gz'
|
|
|
|
sha1 '54e3b718d7b07afdefab6c433e11d1a7bf4cb499'
|
2012-01-27 15:23:05 +00:00
|
|
|
|
|
|
|
depends_on 'cmake' => :build
|
|
|
|
depends_on 'pcre'
|
|
|
|
depends_on 'graphviz'
|
|
|
|
|
2012-04-01 17:49:14 +00:00
|
|
|
def install
|
2012-05-22 21:37:04 +00:00
|
|
|
system "cmake", ".",
|
|
|
|
"-Denable_debug=on",
|
|
|
|
"-Denable_compile_optimizations=off",
|
|
|
|
*std_cmake_args
|
2012-01-27 15:23:05 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|