homebrew-core/Formula/ack.rb
Adam Vandenberg 6df42ad45a Support building from Subversion repositories
Adds a new DownloadStrategy that checks files out from Subversion to the
cache, then exports over to the temp folder for the build.

To use checkout with the svn:// protocol or reimplement download_strategy and
return SubversionDownloadStrategy.
2009-08-24 01:03:30 +01:00

12 lines
No EOL
270 B
Ruby

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