homebrew-core/Formula/timedog.rb
Max Howell 61b2307139 s/require 'brewkit'/require 'formula'/g
brewkit.rb changes ENV destructively, so lets not do that everytime a formula
is required. Now it's possible for other tools to require a formula
description without worrying about side-effects.
2009-10-15 16:48:03 +01:00

11 lines
243 B
Ruby

require 'formula'
class Timedog <Formula
url 'http://timedog.googlecode.com/files/timedog-1.2.zip'
md5 '0ab0f08df51ce74a10b94dfd4fb3df27'
homepage 'http://timedog.googlecode.com/'
def install
bin.install Dir['timedog']
end
end