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.
This commit is contained in:
Jonathan Wright 2010-01-07 12:16:31 +13:00 committed by Adam Vandenberg
parent 28096c95e1
commit c42464b990

17
Formula/winetricks.rb Normal file
View file

@ -0,0 +1,17 @@
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