89c1563d44
Closes Homebrew/homebrew#21339. 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/r1034/trunk/src/winetricks', :using => :curl
|
|
# since the version stated in the field is seldom updated, we append the revision number
|
|
version '20130707-r1034'
|
|
sha256 '00eb1a454815fa31061f762a819e2c4ae95b14c6507a9fff5485bc9f07719da5'
|
|
|
|
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
|