6df42ad45a
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.
12 lines
No EOL
270 B
Ruby
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 |