79 lines
2.7 KiB
Ruby
79 lines
2.7 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.6.1.tar.gz"
|
|
sha256 "80d2de4886fd2ff4926222543958629ef5caa4fddb2cb7ecea3ed27f6e686e89"
|
|
license "MIT"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_monterey: "b8040976eda3f99ace56472ff1faeb04c00b5b1af119329d25876bbfd1a67ae4"
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "94fe91f84b42e3fb2a24117abdce6e60023347403c4c777fe7628f75a291b0bd"
|
|
sha256 cellar: :any_skip_relocation, monterey: "db20c9eaa3dba38721bb3e262b32d4a3e0a6a9fa319e76f119211fd92a6c4308"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "deed724093e26a7dee18910be9018f8e3f28f277cc61846fec1eb2ce65676821"
|
|
sha256 cellar: :any_skip_relocation, catalina: "c6307be8f8b4b7204ad718bb60f8ee1ea1c3367e6b7c544a3b470498bc0c045a"
|
|
end
|
|
|
|
depends_on "luarocks" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "lua"
|
|
|
|
uses_from_macos "tcl-tk"
|
|
|
|
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/refs/tags/v35.1.tar.gz"
|
|
sha256 "1b5c48d2abd59de0738d1fc1e6204e44979ad2a1a26e8e22a2d6215dd502c797"
|
|
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
|