blob: 1b4482e10e6fc95f2dde011c22e55362e962492d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
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
|