28051e7b54
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
22 lines
640 B
Ruby
22 lines
640 B
Ruby
require 'formula'
|
|
|
|
class Winetricks < ScriptFileFormula
|
|
homepage 'http://code.google.com/p/winetricks/'
|
|
url 'http://winetricks.googlecode.com/svn-history/r689/trunk/src/winetricks', :using => :curl
|
|
version '20110812'
|
|
|
|
head 'http://winetricks.googlecode.com/svn/trunk/src/winetricks', :using => :curl
|
|
|
|
depends_on 'cabextract'
|
|
|
|
# Don't provide an md5 for the HEAD build
|
|
unless ARGV.build_head?
|
|
sha256 '2e136facf2b8756ee2e908233da6467d669fdec47f62d5663b3256d6ad22636e'
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
winetricks is a set of utilities for wine, which is installed separately:
|
|
brew install wine
|
|
EOS
|
|
end
|
|
end
|