9f30625297
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/r562/trunk/src/winetricks', :using => :curl
|
|
version '20110429'
|
|
|
|
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 '49a759794ad0d95d2e5470aa4c17ede5e0e1c3890305f6fabbe492d1e7be621a'
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
winetricks is a set of utilities for wine, which is installed separately:
|
|
brew install wine
|
|
EOS
|
|
end
|
|
end
|