blob: 921293bc1f50e6f2200aa0e218955714496fc994 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
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
|