2011-03-10 05:11:03 +00:00
|
|
|
class Bar < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Provide progress bars for shell scripts"
|
2015-01-14 00:30:31 +00:00
|
|
|
homepage "http://www.theiling.de/projects/bar.html"
|
|
|
|
url "http://www.theiling.de/downloads/bar-1.4-src.tar.bz2"
|
2015-08-03 12:55:31 +00:00
|
|
|
sha256 "8034c405b6aa0d474c75ef9356cde1672b8b81834edc7bd94fc91e8ae097033e"
|
2010-04-14 09:38:27 +00:00
|
|
|
|
2015-10-23 08:30:47 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2010-04-14 09:38:27 +00:00
|
|
|
def install
|
2015-01-14 00:30:31 +00:00
|
|
|
bin.install "bar"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
(testpath/"test1").write "pumpkin"
|
|
|
|
(testpath/"test2").write "latte"
|
|
|
|
assert_match /latte/, shell_output("#{bin}/bar test1 test2")
|
2010-04-14 09:38:27 +00:00
|
|
|
end
|
|
|
|
end
|