blob: d9e44cf0485a3f76c2c3c0d6ac4a9f54d5c034a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class When < Formula
  homepage 'http://www.lightandmatter.com/when/when.html'
  url 'http://www.lightandmatter.com/when/when.tar.gz'
  sha1 'fba571196d347bb3017af3551fe5e0920a54ef8e'
  version '1.1.29'
  def install
    bin.install 'when'
    man1.install 'when.1'
  end
end
  |