2015-08-04 15:22:52 +00:00
|
|
|
class Ansiweather < Formula
|
|
|
|
desc "Weather in your terminal, with ANSI colors and Unicode symbols"
|
|
|
|
homepage "https://github.com/fcambus/ansiweather"
|
2015-12-09 23:01:27 +00:00
|
|
|
url "https://github.com/fcambus/ansiweather/archive/1.06.tar.gz"
|
|
|
|
sha256 "1a2e09c648e0ca871b71146710020d8f86339e86ee6b1427bc1adb97740a2d0e"
|
2015-08-04 15:22:52 +00:00
|
|
|
head "https://github.com/fcambus/ansiweather.git"
|
|
|
|
|
2015-10-23 08:26:24 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2015-08-04 15:22:52 +00:00
|
|
|
depends_on "jq"
|
|
|
|
|
|
|
|
def install
|
|
|
|
bin.install "ansiweather"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2015-10-23 09:21:12 +00:00
|
|
|
system bin/"ansiweather", "-h"
|
2015-08-04 15:22:52 +00:00
|
|
|
end
|
|
|
|
end
|