2010-01-06 23:16:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Winetricks < ScriptFileFormula
|
2011-04-20 10:16:27 +00:00
|
|
|
homepage 'http://code.google.com/p/winetricks/'
|
2011-08-16 15:58:40 +00:00
|
|
|
url 'http://winetricks.googlecode.com/svn-history/r689/trunk/src/winetricks', :using => :curl
|
|
|
|
version '20110812'
|
2010-01-06 23:16:31 +00:00
|
|
|
|
2011-04-20 10:16:27 +00:00
|
|
|
head 'http://winetricks.googlecode.com/svn/trunk/src/winetricks', :using => :curl
|
2010-10-13 04:41:39 +00:00
|
|
|
|
2010-12-13 23:07:40 +00:00
|
|
|
depends_on 'cabextract'
|
|
|
|
|
2010-12-11 18:11:24 +00:00
|
|
|
# Don't provide an md5 for the HEAD build
|
|
|
|
unless ARGV.build_head?
|
2011-08-16 15:58:40 +00:00
|
|
|
sha256 '2e136facf2b8756ee2e908233da6467d669fdec47f62d5663b3256d6ad22636e'
|
2010-10-13 04:41:39 +00:00
|
|
|
end
|
2010-01-06 23:16:31 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2010-04-01 20:57:03 +00:00
|
|
|
winetricks is a set of utilities for wine, which is installed separately:
|
|
|
|
brew install wine
|
|
|
|
EOS
|
|
|
|
end
|
2010-01-06 23:16:31 +00:00
|
|
|
end
|