aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cliweather.rb
blob: ef3f3b64cf96bfe750cb55f355fd3afc670d48bd (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.04.21.tar.gz'
  homepage 'http://closure.ath.cx/cliweather'
  md5 '62261bd8703d768a2fbef36d66f4bc08'

  def install
    bin.install "cliweather"
  end

  def test
    system "cliweather 98027"
  end
end