-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Versions moved from deprecated Tap morpheus-lab/homebrew-tap for archiving purposes.
- Loading branch information
Showing
3 changed files
with
78 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
class MorpheusAT220b2 < Formula | ||
desc "Modelling environment for Multi-Cellular Systems Biology" | ||
homepage "https://morpheus.gitlab.io" | ||
url "https://gitlab.com/morpheus.lab/morpheus/-/archive/v2.2.0-beta2/morpheus-v2.2.0-beta2.tar.gz" | ||
version "2.2.0b2" | ||
sha256 "b99b8cba61d206c084882f066d04914cee03eab706e55f3c161445f8d929d981" | ||
license "BSD-3-Clause" | ||
|
||
depends_on "boost" => :build | ||
depends_on "cmake" => :build | ||
depends_on "doxygen" => :build | ||
depends_on "gnuplot" # Runtime dependencies | ||
# depends_on "graphviz" | ||
Check failure on line 13 in Formula/[email protected] GitHub Actions / test-bot (ubuntu-22.04)
|
||
depends_on "libtiff" | ||
depends_on "qt" | ||
depends_on "libomp" => :recommended | ||
|
||
uses_from_macos "bzip2" | ||
uses_from_macos "libxml2" | ||
uses_from_macos "zlib" | ||
|
||
def install | ||
system "cmake", ".", *std_cmake_args | ||
system "make", "install" | ||
end | ||
|
||
def caveats | ||
<<~EOS | ||
To start Morpheus, type the following command: | ||
morpheus-gui | ||
For more information about this version visit: | ||
https://morpheus.gitlab.io/download/v#{version}/ | ||
EOS | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
class MorpheusAT220b3 < Formula | ||
desc "Modelling environment for Multi-Cellular Systems Biology" | ||
homepage "https://morpheus.gitlab.io" | ||
url "https://gitlab.com/morpheus.lab/morpheus/-/archive/v2.2.0-beta3/morpheus-v2.2.0-beta3.tar.gz" | ||
version "2.2.0b3" | ||
sha256 "039ecaecdce0baeb567fe271fa4545b8b5131f78eeadf281f1752630582b4275" | ||
license "BSD-3-Clause" | ||
|
||
depends_on "boost" => :build | ||
depends_on "cmake" => :build | ||
depends_on "doxygen" => :build | ||
depends_on "gnuplot" # Runtime dependencies | ||
# depends_on "graphviz" | ||
Check failure on line 13 in Formula/[email protected] GitHub Actions / test-bot (ubuntu-22.04)
|
||
depends_on "libtiff" | ||
depends_on "qt" | ||
depends_on "ffmpeg" => :recommended | ||
depends_on "libomp" => :recommended | ||
|
||
uses_from_macos "bzip2" | ||
uses_from_macos "libxml2" | ||
uses_from_macos "zlib" | ||
|
||
def install | ||
system "cmake", ".", *std_cmake_args | ||
system "make", "install" | ||
end | ||
|
||
def caveats | ||
<<~EOS | ||
To start Morpheus, type the following command: | ||
morpheus-gui | ||
For more information about this version visit: | ||
https://morpheus.gitlab.io/download/v#{version}/ | ||
EOS | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters