diff options
Diffstat (limited to 'Library/Formula/fish.rb')
| -rw-r--r-- | Library/Formula/fish.rb | 18 |
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" |
