homebrew-core/Formula/winetricks.rb

20 lines
657 B
Ruby

require 'formula'
class Winetricks < ScriptFileFormula
homepage 'http://code.google.com/p/winetricks/'
url 'http://winetricks.googlecode.com/svn-history/r913/trunk/src/winetricks', :using => :curl
# since the version stated in the field is seldom updated, we append the revision number
version '20120912-r913'
sha256 'b7b9a53ca507cec75efbd263c5dad1aaa80f8751469a62d9e68ed44e58050d3c'
head 'http://winetricks.googlecode.com/svn/trunk/src/winetricks', :using => :curl
depends_on 'cabextract'
def caveats; <<-EOS.undent
winetricks is a set of utilities for wine, which is installed separately:
brew install wine
EOS
end
end