blob: 0ab0ca264f213d9cc605519841eb13cd62377451 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Winetricks < ScriptFileFormula
url 'http://www.kegel.com/wine/winetricks', :using => :curl
homepage 'http://wiki.winehq.org/winetricks'
version '20101008'
head 'http://winezeug.googlecode.com/svn/trunk/winetricks', :using => :curl
if ARGV.build_head?
md5 'c42ee409c7c4b71dfd4ee326aab8e14c'
else
md5 '2953c076ab699a659d06a4790a2ab602'
end
def caveats; <<-EOS.undent
winetricks is a set of utilities for wine, which is installed separately:
brew install wine
EOS
end
end
|