diff options
| author | Jack Nagel | 2013-05-19 20:16:16 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-05-19 20:16:44 -0500 |
| commit | f4721cdbce9e328b96ab19aa2c9dc7f7ede62575 (patch) | |
| tree | 4267b632bea077bb2ed384eb43fb8343e2663ed1 /Library/Formula | |
| parent | 577859f5f27d8290a1e1b95e020ae6fe672329dc (diff) | |
| download | homebrew-f4721cdbce9e328b96ab19aa2c9dc7f7ede62575.tar.bz2 | |
Remove fishfish
Replaced by fish 2.0.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/fish.rb | 6 | ||||
| -rw-r--r-- | Library/Formula/fishfish.rb | 36 |
2 files changed, 4 insertions, 38 deletions
diff --git a/Library/Formula/fish.rb b/Library/Formula/fish.rb index 3da570adc..39edff03d 100644 --- a/Library/Formula/fish.rb +++ b/Library/Formula/fish.rb @@ -13,14 +13,16 @@ class Fish < Formula skip_clean 'share/doc' - conflicts_with "fishfish" - def install system "autoconf" system "./configure", "--prefix=#{prefix}" system "make install" end + test do + system "fish", "-c", "echo" + end + def caveats; <<-EOS.undent You will need to add: #{HOMEBREW_PREFIX}/bin/fish diff --git a/Library/Formula/fishfish.rb b/Library/Formula/fishfish.rb deleted file mode 100644 index f9a589320..000000000 --- a/Library/Formula/fishfish.rb +++ /dev/null @@ -1,36 +0,0 @@ -require 'formula' - -class Fishfish < Formula - homepage 'http://ridiculousfish.com/shell' - - url 'https://github.com/fish-shell/fish-shell.git', - :tag => 'OpenBeta_r2' - version 'OpenBeta_r2' - - head 'https://github.com/fish-shell/fish-shell.git', - :branch => 'master' - - depends_on :autoconf - depends_on 'doxygen' => :build - - conflicts_with "fish" - - def install - system "autoconf" - system "./configure", "--prefix=#{prefix}", "--without-xsel" - system "make install" - end - - test do - system "fish", "-c", "echo" - end - - def caveats; <<-EOS.undent - You will need to add: - #{HOMEBREW_PREFIX}/bin/fish - to /etc/shells. Run: - chsh -s #{HOMEBREW_PREFIX}/bin/fish - to make fish your default shell. - EOS - end -end |
