blob: 02dae106803cdbd6b4b75adbd4e4f3915785d1b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Winetricks < ScriptFileFormula
homepage 'http://code.google.com/p/winetricks/'
url 'http://winetricks.googlecode.com/svn-history/r689/trunk/src/winetricks', :using => :curl
version '20110812'
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 '2e136facf2b8756ee2e908233da6467d669fdec47f62d5663b3256d6ad22636e'
end
def caveats; <<-EOS.undent
winetricks is a set of utilities for wine, which is installed separately:
brew install wine
EOS
end
end
|