blob: f655c990bc143e66e954db0800381a69bc3fc4b0 (
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
  |