homebrew-core/Formula/ansiweather.rb
Caleb Xu 1ab077c197 ansiweather 1.14.0
Closes #43212.

Signed-off-by: Jan Viljanen <527069+javian@users.noreply.github.com>
2019-08-17 13:03:57 +02:00

19 lines
520 B
Ruby

class Ansiweather < Formula
desc "Weather in your terminal, with ANSI colors and Unicode symbols"
homepage "https://github.com/fcambus/ansiweather"
url "https://github.com/fcambus/ansiweather/archive/1.14.0.tar.gz"
sha256 "8b7d456c657e3240b14821b3819f2d2279d9a914e397058ee25b98b4783f9ad3"
head "https://github.com/fcambus/ansiweather.git"
bottle :unneeded
depends_on "jq"
def install
bin.install "ansiweather"
end
test do
assert_match "Wind", shell_output("#{bin}/ansiweather")
end
end