ec4aa1f6b6
Conflicts: Library/Formula/imagemagick.rb Library/Formula/taglib.rb Library/Homebrew/brew.h.rb Library/Homebrew/formula.rb bin/brew
19 lines
496 B
Ruby
19 lines
496 B
Ruby
require 'brewkit'
|
|
|
|
class Fish <Formula
|
|
@url='http://fishshell.org/files/1.23.1/fish-1.23.1.tar.gz'
|
|
@homepage='http:://fishshell.org/'
|
|
@md5='4b2436843e63bebba467cc4add11428a'
|
|
|
|
depends_on 'readline'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--without-xsel"
|
|
system "make install"
|
|
end
|
|
|
|
def caveats
|
|
"You will need to add #{HOMEBREW_PREFIX}/bin/fish to /etc/shells\n"+
|
|
"Run `chsh -s #{HOMEBREW_PREFIX}/bin/fish' to make fish your default shell."
|
|
end
|
|
end
|