homebrew-core/Formula/winetricks.rb
Jonathan Wright c42464b990 Winetricks (current)
"Winetricks is a quick and dirty script to download and install various
redistributable runtime libraries sometimes needed to run programs in
Wine."

For example, winetricks can download and install the .Net 2.0 runtime.

http://wiki.winehq.org/winetricks

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

Fixups to winetricks.
2010-02-03 13:46:47 -08:00

17 lines
428 B
Ruby

require 'formula'
class Winetricks < ScriptFileFormula
url 'http://winezeug.googlecode.com/svn-history/r969/trunk/winetricks'
version 'r969'
md5 '1b8187bd3735cf36e486a28526650d4a'
head 'http://winezeug.googlecode.com/svn/trunk/winetricks'
homepage 'http://wiki.winehq.org/winetricks'
# depends_on 'wine' # Don't actually force Wine to install first!
def download_strategy
CurlDownloadStrategy
end
end