9f9d29b058
Closes #6206. Signed-off-by: Tomasz Pajor <tomek@polishgeeks.com>
92 lines
3.3 KiB
Ruby
92 lines
3.3 KiB
Ruby
class Fish < Formula
|
|
desc "User-friendly command-line shell for UNIX-like operating systems"
|
|
homepage "https://fishshell.com"
|
|
|
|
stable do
|
|
url "https://fishshell.com/files/2.3.1/fish-2.3.1.tar.gz"
|
|
mirror "https://github.com/fish-shell/fish-shell/releases/download/2.3.1/fish-2.3.1.tar.gz"
|
|
sha256 "328acad35d131c94118c1e187ff3689300ba757c4469c8cc1eaa994789b98664"
|
|
|
|
# Skip extra dirs creation during install phase patch for current stable. To be removed on the next fish release.
|
|
# As discussed in https://github.com/Homebrew/homebrew-core/pull/2813
|
|
# Use part of https://github.com/fish-shell/fish-shell/commit/9abbc5f upstream commit and patch the makefile.
|
|
patch :DATA
|
|
end
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 "8d48b1a7abaaab4fef4421d5bb1085711f1ca6b7b2b022c7e985cf422316824a" => :sierra
|
|
sha256 "9b14c4a2cc0ff774d4b7d1dfbec92ff96c3e4655e7b6b3f06122c7fea1c46a8e" => :el_capitan
|
|
sha256 "82262790b325b614b6c550a1e07b7c0f5da3ac21aba78d28dfb0e61f6812ecc5" => :yosemite
|
|
sha256 "19fe34be078746b38b4b8bcf0f384c80963a6437587844116645ee1679e444bd" => :mavericks
|
|
end
|
|
|
|
devel do
|
|
url "https://github.com/fish-shell/fish-shell/releases/download/2.4b1/fish-2.4b1.tar.gz"
|
|
sha256 "36139e09064f7904d8b7de4603789c41c1a9bf425280494468948de61572cbbd"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "doxygen" => :build
|
|
end
|
|
|
|
head do
|
|
url "https://github.com/fish-shell/fish-shell.git", :shallow => false
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "doxygen" => :build
|
|
end
|
|
|
|
depends_on "pcre2"
|
|
|
|
def install
|
|
system "autoconf" if build.head? || build.devel?
|
|
|
|
# In Homebrew's 'superenv' sed's path will be incompatible, so
|
|
# the correct path is passed into configure here.
|
|
args = %W[
|
|
--prefix=#{prefix}
|
|
--with-extra-functionsdir=#{HOMEBREW_PREFIX}/share/fish/vendor_functions.d
|
|
--with-extra-completionsdir=#{HOMEBREW_PREFIX}/share/fish/vendor_completions.d
|
|
--with-extra-confdir=#{HOMEBREW_PREFIX}/share/fish/vendor_conf.d
|
|
SED=/usr/bin/sed
|
|
]
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
You will need to add:
|
|
#{HOMEBREW_PREFIX}/bin/fish
|
|
to /etc/shells.
|
|
|
|
Then run:
|
|
chsh -s #{HOMEBREW_PREFIX}/bin/fish
|
|
to make fish your default shell.
|
|
EOS
|
|
end
|
|
|
|
def post_install
|
|
(pkgshare/"vendor_functions.d").mkpath
|
|
(pkgshare/"vendor_completions.d").mkpath
|
|
(pkgshare/"vendor_conf.d").mkpath
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/fish", "-c", "echo"
|
|
end
|
|
end
|
|
|
|
__END__
|
|
As discussed in https://github.com/Homebrew/homebrew-core/pull/2813
|
|
Grab part of https://github.com/fish-shell/fish-shell/commit/9abbc5f upstream commit and patch the makefile.
|
|
--- a/Makefile.in
|
|
+++ b/Makefile.in@@ -664,5 +664,5 @@ install-force: all install-translations
|
|
@@ -664,5 +664,5 @@ install-force: all install-translations
|
|
$(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/completions
|
|
- $(INSTALL) -m 755 -d $(DESTDIR)$(extra_completionsdir)
|
|
- $(INSTALL) -m 755 -d $(DESTDIR)$(extra_functionsdir)
|
|
- $(INSTALL) -m 755 -d $(DESTDIR)$(extra_confdir)
|
|
+ $(INSTALL) -m 755 -d $(DESTDIR)$(extra_completionsdir); true
|
|
+ $(INSTALL) -m 755 -d $(DESTDIR)$(extra_functionsdir); true
|
|
+ $(INSTALL) -m 755 -d $(DESTDIR)$(extra_confdir); true
|
|
$(INSTALL) -m 755 -d $(DESTDIR)$(datadir)/fish/functions
|