homebrew-core/Formula/cliweather.rb
Jack Nagel 63cde03be4 Fix more quoting issues
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-15 17:08:57 -05:00

15 lines
343 B
Ruby

require 'formula'
class Cliweather < Formula
url 'http://pub.lambda.ath.cx/patrick/cliweather/static/downloads/cliweather-2011.05.05.tar.gz'
homepage 'http://closure.ath.cx/cliweather'
md5 'faf9f16e86e48906708b07f381cedebc'
def install
bin.install "cliweather"
end
def test
system "#{bin}/cliweather", "98027"
end
end