56 lines
2.0 KiB
Ruby
56 lines
2.0 KiB
Ruby
class Percol < Formula
|
|
desc "Interactive grep tool"
|
|
homepage "https://github.com/mooz/percol"
|
|
url "https://github.com/mooz/percol/archive/v0.2.1.tar.gz"
|
|
sha256 "75056ba1fe190ae4c728e68df963c0e7d19bfe5a85649e51ae4193d4011042f9"
|
|
license "MIT"
|
|
revision 3
|
|
head "https://github.com/mooz/percol.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "c62d0f5afe808ad6f8f4aef4bbb564b264b2be6111b4b601ab1f4dc3ea085d0f" => :catalina
|
|
sha256 "6f48bda38d580d2bc062b1964c706d6b4aba657b4e1d13b0d0007debfb0505b0" => :mojave
|
|
sha256 "e57c46a9b3d71dee2a3641d75fa1bb47fe520cee81e401b41154c69e329f90a2" => :high_sierra
|
|
end
|
|
|
|
depends_on "python@3.9"
|
|
|
|
resource "six" do
|
|
url "https://files.pythonhosted.org/packages/94/3e/edcf6fef41d89187df7e38e868b2dd2182677922b600e880baad7749c865/six-1.13.0.tar.gz"
|
|
sha256 "30f610279e8b2578cab6db20741130331735c781b56053c59c4076da27f06b66"
|
|
end
|
|
|
|
resource "cmigemo" do
|
|
url "https://files.pythonhosted.org/packages/2f/e4/374df50b655e36139334046f898469bf5e2d7600e1e638f29baf05b14b72/cmigemo-0.1.6.tar.gz"
|
|
sha256 "7313aa3007f67600b066e04a4805e444563d151341deb330135b4dcdf6444626"
|
|
end
|
|
|
|
def install
|
|
xy = Language::Python.major_minor_version "python3"
|
|
ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python#{xy}/site-packages"
|
|
resources.each do |r|
|
|
r.stage do
|
|
system "python3", *Language::Python.setup_install_args(libexec/"vendor")
|
|
end
|
|
end
|
|
|
|
ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python#{xy}/site-packages"
|
|
system "python3", *Language::Python.setup_install_args(libexec)
|
|
|
|
bin.install Dir["#{libexec}/bin/*"]
|
|
bin.env_script_all_files(libexec/"bin", PYTHONPATH: ENV["PYTHONPATH"])
|
|
end
|
|
|
|
test do
|
|
(testpath/"textfile").write <<~EOS
|
|
Homebrew, the missing package manager for macOS.
|
|
EOS
|
|
(testpath/"expect-script").write <<~EOS
|
|
spawn #{bin}/percol --query=Homebrew textfile
|
|
expect "QUERY> Homebrew"
|
|
EOS
|
|
assert_match "Homebrew", shell_output("/usr/bin/expect -f expect-script")
|
|
end
|
|
end
|