diff options
| author | Jonathan Wright | 2010-01-07 12:16:31 +1300 |
|---|---|---|
| committer | Adam Vandenberg | 2010-02-03 13:46:47 -0800 |
| commit | 541bee624f4f01766d79c168e9961fdb0c348162 (patch) | |
| tree | 6702b01d51a9119c822dbd2bdba24a34f9b734e9 /Library/Formula | |
| parent | e27a6cfee75ea59fa2163cc560bb2035c3c44be2 (diff) | |
| download | homebrew-541bee624f4f01766d79c168e9961fdb0c348162.tar.bz2 | |
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.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/winetricks.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/winetricks.rb b/Library/Formula/winetricks.rb new file mode 100644 index 000000000..d8d9a64eb --- /dev/null +++ b/Library/Formula/winetricks.rb @@ -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 |
