blob: 49dcc0b3a5ff559878a253fcad06a8df904ca936 (
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://downloads.sourceforge.net/project/zsh/zsh-dev/4.3.12/zsh-4.3.12.tar.gz'
homepage 'http://www.zsh.org/'
md5 '46ae7be975779b9b0ea24e8b30479a8b'
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
|