d45f6f872e
Switch back to the SF url when it mirrors out. Closes Homebrew/homebrew#10361. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
46 lines
1.4 KiB
Ruby
46 lines
1.4 KiB
Ruby
require 'formula'
|
|
|
|
class Zsh < Formula
|
|
homepage 'http://www.zsh.org/'
|
|
url 'http://www.zsh.org/pub/zsh-4.3.16.tar.gz'
|
|
# switch back to sourceforge when 4.3.16 mirrors out
|
|
# url 'http://sourceforge.net/projects/zsh/files/zsh-dev/4.3.16/zsh-4.3.16.tar.gz'
|
|
md5 '95fc26c6f163178484860d31de98ac13'
|
|
|
|
depends_on 'gdbm'
|
|
depends_on 'libiconv'
|
|
depends_on 'pcre'
|
|
|
|
skip_clean :all
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}",
|
|
"--disable-etcdir",
|
|
"--enable-fndir=#{share}/zsh/functions",
|
|
"--enable-site-fndir=#{share}/zsh/site-functions",
|
|
"--enable-scriptdir=#{share}/zsh/scripts",
|
|
"--enable-site-scriptdir=#{share}/zsh/site-scripts",
|
|
"--enable-cap",
|
|
"--enable-function-subdirs",
|
|
"--enable-maildir-support",
|
|
"--enable-multibyte",
|
|
"--enable-pcre",
|
|
"--enable-zsh-secure-free",
|
|
"--with-tcsetpgrp"
|
|
|
|
# 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.
|
|
EOS
|
|
end
|
|
end
|