512758e6eb
Realign trailing EOS.
34 lines
1.3 KiB
Ruby
34 lines
1.3 KiB
Ruby
class ZshNavigationTools < Formula
|
|
desc "Zsh curses-based tools, e.g. multi-word history searcher"
|
|
homepage "https://github.com/psprint/zsh-navigation-tools"
|
|
url "https://github.com/psprint/zsh-navigation-tools/archive/v2.2.7.tar.gz"
|
|
sha256 "ee832b81ce678a247b998675111c66aa1873d72aa33c2593a65626296ca685fc"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "5122287e2fb30bde73acb7174e1310ea41ef049d201203bc559edf02555a2e33" => :high_sierra
|
|
sha256 "fca68610ba67c19d8516719d03ed5074a5611ba01941dcb135c87d6d561f3cb1" => :sierra
|
|
sha256 "fca68610ba67c19d8516719d03ed5074a5611ba01941dcb135c87d6d561f3cb1" => :el_capitan
|
|
sha256 "fca68610ba67c19d8516719d03ed5074a5611ba01941dcb135c87d6d561f3cb1" => :yosemite
|
|
end
|
|
|
|
def install
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
end
|
|
|
|
def caveats; <<~EOS
|
|
To run zsh-navigation-tools, add the following at the end of your .zshrc:
|
|
source #{HOMEBREW_PREFIX}/share/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh
|
|
|
|
You will also need to force reload of your .zshrc:
|
|
source ~/.zshrc
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
# This compiles package's main file
|
|
# Zcompile is very capable of detecting syntax errors
|
|
cp pkgshare/"n-list", testpath
|
|
system "zsh", "-c", "zcompile n-list"
|
|
end
|
|
end
|