brew/Formula/ack.rb
Max Howell d6141137f2 Refactor Formulae
Basically Formulae are now classes that get dynamically loaded by the
brew script. This gives me more flexability.
2009-06-03 15:57:19 +01:00

10 lines
251 B
Ruby

require 'brewkit'
class Ack <UncompressedScriptFormula
def initialize
@version='1.88'
@url="http://ack.googlecode.com/svn/tags/#{@version}/ack"
@md5='8009a13ab0fc66047bea0ea2ad89419c'
@homepage='http://betterthangrep.com/'
end
end