1
1
class Morpheus < Formula
2
2
desc "Modelling environment for multi-cellular systems biology"
3
3
homepage "https://morpheus.gitlab.io/"
4
- url "https://gitlab.com/morpheus.lab/morpheus/-/archive/v2.3.5 /morpheus-v2.3.5 .tar.gz"
5
- sha256 "4270fb0d01939aa208025530f078931d806c57f608fa2798009d3adb0d6207f5 "
4
+ url "https://gitlab.com/morpheus.lab/morpheus/-/archive/v2.3.6 /morpheus-v2.3.6 .tar.gz"
5
+ sha256 "abb277f3898467b51994e39ed0f4b38fc9aec79b98b126c6d17d971716612d82 "
6
6
license "BSD-3-Clause"
7
7
8
8
livecheck do
@@ -11,13 +11,12 @@ class Morpheus < Formula
11
11
end
12
12
13
13
bottle do
14
- root_url "https://github.com/morpheus-lab/homebrew-morpheus/releases/download/morpheus-2.3.5"
15
- sha256 cellar : :any , arm64_sonoma : "668d598eca20eabf4f96f9fae8990a74365530a95d0075555bb27279e35952f4"
16
- sha256 cellar : :any , sonoma : "a8401d851948575372e43e63f2c9ac34477ac608c56775a3b44d261d71dc4ee9"
17
- sha256 cellar : :any , ventura : "d0ff492eff6c6ccccebd684dee3c948a49c8cdba1ae5ad2feb6323bc5a3e2410"
18
- sha256 cellar : :any_skip_relocation , x86_64_linux : "847610f4942e1db49a5402660daa1b7bf8501eba9fdf98dc448a4da9a6750a69"
14
+ root_url "https://github.com/morpheus-lab/homebrew-morpheus/releases/download/morpheus-2.3.6"
15
+ sha256 cellar : :any_skip_relocation , x86_64_linux : "0c2797f3a0745296b99d66d2d901ae6e2982cefd76464aecd0306ea84ca6fee4"
19
16
end
20
17
18
+ option "with-sbml" , "Enable SBML import via the internal libSBML build"
19
+
21
20
depends_on "boost" => :build
22
21
depends_on "cmake" => :build
23
22
depends_on "doxygen" => :build
@@ -37,6 +36,7 @@ def install
37
36
args = std_cmake_args
38
37
args << "-G Ninja"
39
38
args << "-DMORPHEUS_RELEASE_BUNDLE=ON" if OS . mac?
39
+ args << "-DMORHEUS_SBML=OFF" if OS . mac? && build . without? ( "sbml" )
40
40
41
41
system "cmake" , *args , "."
42
42
system "ninja" , "install"
0 commit comments