homebrew-core/Formula/zsh.rb
Barry Allard f96a243d81 zsh 5.0.4
Closes Homebrew/homebrew#25376.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-12-21 12:28:18 +00:00

57 lines
1.4 KiB
Ruby

require 'formula'
class Zsh < Formula
homepage 'http://www.zsh.org/'
url 'http://fossies.org/linux/misc/zsh-5.0.4.tar.bz2'
mirror 'http://www.zsh.org/pub/zsh-5.0.4.tar.bz2'
sha1 '9c52044531a7ffa6d299bffd8610399e4a000266'
depends_on 'gdbm'
depends_on 'pcre'
option 'enable-etcdir', 'Enable the reading of Zsh rc files in /etc'
def install
args = %W[
--prefix=#{prefix}
--enable-fndir=#{share}/zsh/functions
--enable-scriptdir=#{share}/zsh/scripts
--enable-site-fndir=#{HOMEBREW_PREFIX}/share/zsh/site-functions
--enable-site-scriptdir=#{HOMEBREW_PREFIX}/share/zsh/site-scripts
--enable-cap
--enable-maildir-support
--enable-multibyte
--enable-pcre
--enable-zsh-secure-free
--with-tcsetpgrp
]
if build.include? 'enable-etcdir'
args << '--enable-etcdir'
else
args << '--disable-etcdir'
end
system "./configure", *args
# Do not version installation directories.
inreplace ["Makefile", "Src/Makefile"],
"$(libdir)/$(tzsh)/$(VERSION)", "$(libdir)"
system "make install"
end
def test
system "#{bin}/zsh", "--version"
end
def caveats; <<-EOS.undent
To use this build of Zsh as your login shell, add it to /etc/shells.
Add the following to your zshrc to access the online help:
unalias run-help
autoload run-help
HELPDIR=#{HOMEBREW_PREFIX}/share/zsh/helpfiles
EOS
end
end