69535fb5b7
Update winetricks formula Winetricks formula was pretty out of date. This makes me sad, because it caused winetricks to not install some libraries correctly, and thus I had to manually install it, instead of a simple brew install winetricks. This updates the formula to the (current latest) version. Closes Homebrew/homebrew#28913. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
19 lines
659 B
Ruby
19 lines
659 B
Ruby
require 'formula'
|
|
|
|
class Winetricks < ScriptFileFormula
|
|
homepage 'http://code.google.com/p/winetricks/'
|
|
url 'http://winetricks.googlecode.com/svn-history/r1187/trunk/src/winetricks', :using => :curl
|
|
# since the version stated in the field is seldom updated, we append the revision number
|
|
version '20140415-r1187'
|
|
sha256 '8284dab0574ae68a0351d924a603f4c96d1b726dd05007172313d1855088b1d0'
|
|
|
|
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
|