76 lines
2.6 KiB
Ruby
76 lines
2.6 KiB
Ruby
class Lmod < Formula
|
|
desc "Lua-based environment modules system to modify PATH variable"
|
|
homepage "https://lmod.readthedocs.io"
|
|
url "https://github.com/TACC/Lmod/archive/8.4.26.tar.gz"
|
|
sha256 "7bcd16046439dfe380635ff404af501a436a93146321a535e3014066b83392d3"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "415721c5b02a9b56d1a9351a399b44f3165fbf364d2fdfe37bb1eb0cf4547553"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "3ef922c7bd5b3fbe913032a0f5e6b35619966a6180b767569173e2393b458026"
|
|
sha256 cellar: :any_skip_relocation, catalina: "212bd2b071d5523348fecf894d3d65e9eb58b548675ce563f6c97de7e64fad39"
|
|
sha256 cellar: :any_skip_relocation, mojave: "1261f624e2b93c027c4f419da1ba35ed0fb5ab5a6f38d9998495b85f89839091"
|
|
end
|
|
|
|
depends_on "luarocks" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "lua"
|
|
|
|
resource "luafilesystem" do
|
|
url "https://github.com/keplerproject/luafilesystem/archive/v1_8_0.tar.gz"
|
|
sha256 "16d17c788b8093f2047325343f5e9b74cccb1ea96001e45914a58bbae8932495"
|
|
end
|
|
|
|
resource "luaposix" do
|
|
url "https://github.com/luaposix/luaposix/archive/v35.0.tar.gz"
|
|
sha256 "a4edf2f715feff65acb009e8d1689e57ec665eb79bc36a6649fae55eafd56809"
|
|
end
|
|
|
|
def install
|
|
luaversion = Formula["lua"].version.major_minor
|
|
luapath = libexec/"vendor"
|
|
ENV["LUA_PATH"] = "?.lua;" \
|
|
"#{luapath}/share/lua/#{luaversion}/?.lua;" \
|
|
"#{luapath}/share/lua/#{luaversion}/?/init.lua"
|
|
ENV["LUA_CPATH"] = "#{luapath}/lib/lua/#{luaversion}/?.so"
|
|
|
|
resources.each do |r|
|
|
r.stage do
|
|
system "luarocks", "make", "--tree=#{luapath}"
|
|
end
|
|
end
|
|
|
|
system "./configure", "--with-siteControlPrefix=yes", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
To use Lmod, you should add the init script to the shell you are using.
|
|
|
|
For example, the bash setup script is here: #{opt_prefix}/init/profile
|
|
and you can source it in your bash setup or link to it.
|
|
|
|
If you use fish, use #{opt_prefix}/init/fish, such as:
|
|
ln -s #{opt_prefix}/init/fish ~/.config/fish/conf.d/00_lmod.fish
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
sh_init = "#{prefix}/init/sh"
|
|
|
|
(testpath/"lmodtest.sh").write <<~EOS
|
|
#!/bin/sh
|
|
source #{sh_init}
|
|
module list
|
|
EOS
|
|
|
|
assert_match "No modules loaded", shell_output("sh #{testpath}/lmodtest.sh 2>&1")
|
|
|
|
system sh_init
|
|
output = shell_output("#{prefix}/libexec/spider #{prefix}/modulefiles/Core/")
|
|
assert_match "lmod", output
|
|
assert_match "settarg", output
|
|
end
|
|
end
|