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:
parent
28096c95e1
commit
c42464b990
1 changed files with 17 additions and 0 deletions
17
Formula/winetricks.rb
Normal file
17
Formula/winetricks.rb
Normal 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
|
Loading…
Reference in a new issue