aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/zsh.rb
blob: bb08d65e08a53afd0bae20715820f02490fd803c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
require 'formula'

class Zsh < Formula
  url 'http://sourceforge.net/projects/zsh/files/zsh-dev/4.3.15/zsh-4.3.15.tar.gz'
  homepage 'http://www.zsh.org/'
  md5 'b2e2d0a431935b408ed8ea48226f9962'

  depends_on 'gdbm' => :optional

  skip_clean :all

  def install
    system "./configure", "--prefix=#{prefix}",
                          # don't version stuff in Homebrew, we already do that!
                          "--enable-fndir=#{share}/zsh/functions",
                          "--enable-scriptdir=#{share}/zsh/scripts"

    # Again, don't version installation directories
    inreplace ["Makefile", "Src/Makefile"],
      "$(libdir)/$(tzsh)/$(VERSION)", "$(libdir)"

    system "make install"
  end

  def caveats; <<-EOS.undent
    In order to use this build of zsh as your login shell,
    it must be added to /etc/shells.
    EOS
  end
end