2019-08-07 18:36:33 +00:00
|
|
|
class Broot < Formula
|
|
|
|
desc "New way to see and navigate directory trees"
|
|
|
|
homepage "https://dystroy.org/broot"
|
2019-11-27 20:56:00 +00:00
|
|
|
url "https://github.com/Canop/broot/archive/v0.10.3.tar.gz"
|
|
|
|
sha256 "6e0ddb89d3b533bcbf7f8f0b874c480f3421f5fa7780a0487f26b44438fda0e5"
|
2019-08-07 18:36:33 +00:00
|
|
|
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
|
|
|
|
|
2019-08-07 18:36:33 +00:00
|
|
|
depends_on "rust" => :build
|
|
|
|
|
|
|
|
def install
|
2019-11-03 01:55:58 +00:00
|
|
|
system "cargo", "install", "--locked", "--root", prefix, "--path", "."
|
2019-08-07 18:36:33 +00:00
|
|
|
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
|