2015-01-13 15:47:27 +00:00
|
|
|
require "language/go"
|
2014-03-08 00:59:40 +00:00
|
|
|
|
|
|
|
class Fzf < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Fuzzy finder for your shell"
|
2014-03-08 00:59:40 +00:00
|
|
|
homepage "https://github.com/junegunn/fzf"
|
2015-11-05 11:26:56 +00:00
|
|
|
url "https://github.com/junegunn/fzf/archive/0.10.9.tar.gz"
|
|
|
|
sha256 "55a9b8d27f3832be569519bcd3afe1f1e345daaa8b8b6523aedff661954f42fb"
|
2015-08-03 12:55:31 +00:00
|
|
|
head "https://github.com/junegunn/fzf.git"
|
2015-01-13 15:47:27 +00:00
|
|
|
|
2015-01-13 17:08:56 +00:00
|
|
|
bottle do
|
2015-09-13 01:16:29 +00:00
|
|
|
cellar :any_skip_relocation
|
2015-11-05 11:31:49 +00:00
|
|
|
sha256 "3f788e4e27755e6973b67bb28885654d5861e0a5cfae3120f6dc49bfe1f78abc" => :el_capitan
|
|
|
|
sha256 "b518e6cece9536d2add097c09003f96d25cf2a70240fec60a6f0be8ed7d60077" => :yosemite
|
|
|
|
sha256 "18f48d17cd9b6e746e6090d89119d443318d5a3ba4853007c4002cb6413b046c" => :mavericks
|
2015-01-13 17:08:56 +00:00
|
|
|
end
|
|
|
|
|
2015-01-13 15:47:27 +00:00
|
|
|
depends_on "go" => :build
|
|
|
|
|
|
|
|
go_resource "github.com/junegunn/go-shellwords" do
|
|
|
|
url "https://github.com/junegunn/go-shellwords.git",
|
|
|
|
:revision => "35d512af75e283aae4ca1fc3d44b159ed66189a4"
|
|
|
|
end
|
|
|
|
|
|
|
|
go_resource "github.com/junegunn/go-runewidth" do
|
|
|
|
url "https://github.com/junegunn/go-runewidth.git",
|
|
|
|
:revision => "63c378b851290989b19ca955468386485f118c65"
|
|
|
|
end
|
2014-03-08 00:59:40 +00:00
|
|
|
|
|
|
|
def install
|
2015-01-13 15:47:27 +00:00
|
|
|
ENV["GOPATH"] = buildpath
|
|
|
|
mkdir_p buildpath/"src/github.com/junegunn"
|
|
|
|
ln_s buildpath, buildpath/"src/github.com/junegunn/fzf"
|
|
|
|
Language::Go.stage_deps resources, buildpath/"src"
|
|
|
|
|
|
|
|
cd buildpath/"src/fzf" do
|
|
|
|
system "go", "build"
|
|
|
|
bin.install "fzf"
|
|
|
|
end
|
|
|
|
|
2015-04-01 12:58:09 +00:00
|
|
|
prefix.install %w[install uninstall LICENSE]
|
|
|
|
(prefix/"shell").install %w[bash zsh fish].map { |s| "shell/key-bindings.#{s}" }
|
2015-05-21 15:35:46 +00:00
|
|
|
(prefix/"shell").install %w[bash zsh].map { |s| "shell/completion.#{s}" }
|
2014-03-30 16:07:39 +00:00
|
|
|
(prefix/"plugin").install "plugin/fzf.vim"
|
2015-04-01 12:58:09 +00:00
|
|
|
man1.install "man/man1/fzf.1"
|
|
|
|
bin.install "bin/fzf-tmux"
|
2014-03-08 00:59:40 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
To install useful keybindings and fuzzy completion:
|
2015-09-05 15:34:15 +00:00
|
|
|
#{opt_prefix}/install
|
2014-03-30 16:07:39 +00:00
|
|
|
|
|
|
|
To use fzf in Vim, add the following line to your .vimrc:
|
2015-09-05 15:34:15 +00:00
|
|
|
set rtp+=#{opt_prefix}
|
2014-03-08 00:59:40 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"list").write %w[hello world].join($/)
|
2014-05-04 19:12:41 +00:00
|
|
|
assert_equal "world", shell_output("cat #{testpath}/list | #{bin}/fzf -f wld").chomp
|
2014-03-08 00:59:40 +00:00
|
|
|
end
|
|
|
|
end
|