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/'
|
|
|
|
url 'http://winetricks.googlecode.com/svn-history/r562/trunk/src/winetricks', :using => :curl
|
|
|
|
version '20110429'
|
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-04-20 10:16:27 +00:00
|
|
|
sha256 '49a759794ad0d95d2e5470aa4c17ede5e0e1c3890305f6fabbe492d1e7be621a'
|
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
|