homebrew-core/Formula/zsh.rb
Max Howell 61b2307139 s/require 'brewkit'/require 'formula'/g
brewkit.rb changes ENV destructively, so lets not do that everytime a formula
is required. Now it's possible for other tools to require a formula
description without worrying about side-effects.
2009-10-15 16:48:03 +01:00

26 lines
858 B
Ruby

require 'formula'
class Zsh <Formula
@url='http://downloads.sourceforge.net/project/zsh/zsh-dev/4.3.10/zsh-4.3.10.tar.gz'
@homepage='http://www.zsh.org/'
@md5='031efc8c8efb9778ffa8afbcd75f0152'
def install
system "./configure", "--disable-debug",
"--prefix=#{prefix}",
"--disable-dependency-tracking",
# 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 "Src/Makefile", "$(libdir)/$(tzsh)/$(VERSION)", "$(libdir)"
inreplace "Makefile", "$(libdir)/$(tzsh)/$(VERSION)", "$(libdir)"
system "make install"
end
def skip_clean? path
true
end
end