aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/winetricks.rb
blob: 2d2fb0347c2561fc4dcbac05ddb209cd6e03ddf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'formula'

class Winetricks < ScriptFileFormula
  url 'http://winezeug.googlecode.com/svn-history/r1019/trunk/winetricks'
  version '20100316'
  md5 '79ab153ae51289ec7c25c7b7ed5d68ff'
  homepage 'http://wiki.winehq.org/winetricks'

  head 'http://winezeug.googlecode.com/svn/trunk/winetricks'


  def caveats
    <<-EOS.undent
    winetricks is a set of utilities for wine, which is installed separately:
      brew install wine
    EOS
  end

  def download_strategy
    CurlDownloadStrategy
  end
end