95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
37 lines
1.1 KiB
Ruby
37 lines
1.1 KiB
Ruby
class Modules < Formula
|
|
desc "Dynamic modification of a user's environment via modulefiles"
|
|
homepage "http://modules.sourceforge.net/"
|
|
url "https://downloads.sourceforge.net/project/modules/Modules/modules-3.2.10/modules-3.2.10.tar.bz2"
|
|
sha256 "e8403492a8d57ace6485813ad6cdaafe0a735b7d93b9435553a8d11d3fdd29a2"
|
|
|
|
depends_on :x11 => :optional
|
|
|
|
def install
|
|
# -DUSE_INTERP_ERRORLINE fixes
|
|
# error: no member named 'errorLine' in 'struct Tcl_Interp'
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
--datarootdir=#{share}
|
|
--disable-versioning
|
|
CPPFLAGS=-DUSE_INTERP_ERRORLINE]
|
|
args << "--without-x" if build.without? "x11"
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
To activate modules, add the following at the end of your .zshrc:
|
|
source #{opt_prefix}/Modules/init/zsh
|
|
You will also need to reload your .zshrc:
|
|
source ~/.zshrc
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system *%W[#{prefix}/Modules/bin/modulecmd --version]
|
|
system "zsh", "-c", "source #{prefix}/Modules/init/zsh; module"
|
|
end
|
|
end
|