2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-02 19:27:58 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Fish < Formula
|
2009-10-15 11:54:19 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/fish/fish/1.23.1/fish-1.23.1.tar.bz2'
|
|
|
|
homepage 'http://fishshell.org/'
|
|
|
|
md5 'ead6b7c6cdb21f35a3d4aa1d5fa596f1'
|
2009-09-02 19:27:58 +00:00
|
|
|
|
2009-09-18 18:16:39 +00:00
|
|
|
depends_on 'readline'
|
2009-12-04 10:47:47 +00:00
|
|
|
skip_clean 'share/doc'
|
2009-09-02 19:27:58 +00:00
|
|
|
|
2011-02-24 19:50:11 +00:00
|
|
|
def patches
|
|
|
|
# Reduces the timeout in select_try() from 5s to 10ms.
|
|
|
|
# The old timeout would cause fish to frequently freeze for a 5
|
|
|
|
# second period.
|
2011-03-19 19:10:57 +00:00
|
|
|
"http://gitorious.org/fish-shell/fish-shell/commit/6b8e7b16f6d4e11e168e3ce2effe2d8f0a53b184.patch?format=diff"
|
2011-02-24 19:50:11 +00:00
|
|
|
end
|
|
|
|
|
2009-09-02 19:27:58 +00:00
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--without-xsel"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats
|
2009-09-03 13:18:43 +00:00
|
|
|
"You will need to add #{HOMEBREW_PREFIX}/bin/fish to /etc/shells\n"+
|
2009-09-02 19:27:58 +00:00
|
|
|
"Run `chsh -s #{HOMEBREW_PREFIX}/bin/fish' to make fish your default shell."
|
|
|
|
end
|
|
|
|
end
|