homebrew-core/Formula/broot.rb

36 lines
1.1 KiB
Ruby
Raw Normal View History

class Broot < Formula
desc "New way to see and navigate directory trees"
homepage "https://dystroy.org/broot"
url "https://github.com/Canop/broot/archive/v0.10.3.tar.gz"
sha256 "6e0ddb89d3b533bcbf7f8f0b874c480f3421f5fa7780a0487f26b44438fda0e5"
head "https://github.com/Canop/broot.git"
2019-09-15 12:04:41 +00:00
bottle do
cellar :any_skip_relocation
2019-11-16 01:28:05 +00:00
sha256 "8f199956e05eb8c777ee6f8f5ecd573d0f67e4502724b6a2a24eef632b377b80" => :catalina
sha256 "e7e084cdb1904deeb0f46710c962fe35496f470c0538ff4582404c1c028de95f" => :mojave
sha256 "ce7d18614a5cc44c3f85e1717b6cd4d1efbb005f3aedae96ac6d398cd22b4f06" => :high_sierra
2019-09-15 12:04:41 +00:00
end
depends_on "rust" => :build
def install
system "cargo", "install", "--locked", "--root", prefix, "--path", "."
end
test do
require "pty"
%w[a b c].each { |f| (testpath/"root"/f).write("") }
PTY.spawn("#{bin}/broot", "--cmd", ":pt", "--no-style", "--out", "#{testpath}/output.txt", testpath/"root") do |r, _w, _pid|
r.read
assert_match <<~EOS, (testpath/"output.txt").read.gsub(/\r\n?/, "\n")
a
b
c
EOS
end
end
end