homebrew-core/Formula/winetricks.rb

24 lines
723 B
Ruby

require 'formula'
class Winetricks < ScriptFileFormula
homepage 'http://code.google.com/p/winetricks/'
url 'http://winetricks.googlecode.com/svn-history/r782/trunk/src/winetricks', :using => :curl
version '20120503'
# this is the version stated in the file, but note that it is not always updated
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 '9d0c519811f63807832af747fa65147aacdafe17be4a567fc716af4d87a80070'
end
def caveats; <<-EOS.undent
winetricks is a set of utilities for wine, which is installed separately:
brew install wine
EOS
end
end