aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJosh Tilles2015-02-20 19:13:22 -0500
committerMike McQuaid2015-02-21 20:23:28 +0000
commit8612a6b9d949cce2fe9f1a356caa2b35be55cdbb (patch)
treecf52a566a9ea7d8b3294fdd84438c61876f0856b /Library/Formula
parentc1488816e3fada291e3fb02a68a0f278d5578af3 (diff)
downloadhomebrew-8612a6b9d949cce2fe9f1a356caa2b35be55cdbb.tar.bz2
fish 2.1.2
This is just a bugfix release for OS X. For more information, see: * https://github.com/fish-shell/fish-shell/commit/b3aa1878670c3584716cdf6d79c894277a2c7c00 * https://github.com/fish-shell/fish-shell/issues/1859 Closes #37009. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/fish.rb18
1 files changed, 11 insertions, 7 deletions
diff --git a/Library/Formula/fish.rb b/Library/Formula/fish.rb
index 834d4c649..e89b9423a 100644
--- a/Library/Formula/fish.rb
+++ b/Library/Formula/fish.rb
@@ -1,7 +1,7 @@
class Fish < Formula
homepage "http://fishshell.com"
- url "https://github.com/fish-shell/fish-shell/releases/download/2.1.1/fish-2.1.1.tar.gz"
- sha1 "8f97f39b92ea7dfef1f464b18e304045bf37546d"
+ url "https://github.com/fish-shell/fish-shell/archive/2.1.2.tar.gz"
+ sha1 "fd40ed8de7497bf1578f50df6674b2d0464395fe"
bottle do
sha1 "61736de475346ff8aba971429d217b827730bc65" => :mavericks
@@ -11,16 +11,20 @@ class Fish < Formula
head do
url "https://github.com/fish-shell/fish-shell.git", :shallow => false
-
- depends_on "autoconf" => :build
- # Indeed, the head build always builds documentation
- depends_on "doxygen" => :build
end
+ # This pair of dependencies should be revisited upon fish's next release.
+ # (they're normally only necessary for HEAD builds)
+ depends_on "autoconf" => :build
+ depends_on "doxygen" => :build
+
skip_clean "share/doc"
def install
- system "autoconf" if build.head?
+ # As described above, needing autoconf on a release is temporary; once
+ # fish has another major release, we can probably restore the
+ # `if build.head?` statement modifier.
+ system "autoconf"
# In Homebrew's 'superenv' sed's path will be incompatible, so
# the correct path is passed into configure here.
system "./configure", "--prefix=#{prefix}", "SED=/usr/bin/sed"