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"
|
2016-01-22 11:00:57 +00:00
|
|
|
url "https://github.com/fcambus/ansiweather/archive/1.07.tar.gz"
|
|
|
|
sha256 "f9b377b23ecc9c2d3567424b300b8e370eb0959c9b1cd0828ba07ce38f2ef0a0"
|
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
|