2010-01-06 23:16:31 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Winetricks < ScriptFileFormula
|
2011-04-20 10:16:27 +00:00
|
|
|
homepage 'http://code.google.com/p/winetricks/'
|
2012-06-09 00:27:07 +00:00
|
|
|
url 'http://winetricks.googlecode.com/svn-history/r832/trunk/src/winetricks', :using => :curl
|
|
|
|
version '20120308-r832'
|
2012-03-27 18:44:09 +00:00
|
|
|
# since the version stated in the field is seldom updated, we append the revision number
|
2010-01-06 23:16:31 +00:00
|
|
|
|
2011-04-20 10:16:27 +00:00
|
|
|
head 'http://winetricks.googlecode.com/svn/trunk/src/winetricks', :using => :curl
|
2010-10-13 04:41:39 +00:00
|
|
|
|
2010-12-13 23:07:40 +00:00
|
|
|
depends_on 'cabextract'
|
|
|
|
|
2012-06-09 00:27:07 +00:00
|
|
|
# Don't provide a hash for the HEAD build
|
2010-12-11 18:11:24 +00:00
|
|
|
unless ARGV.build_head?
|
2012-06-09 00:27:07 +00:00
|
|
|
sha256 '3ca2eb2afb09d895a3689cce24b78e76254f86c7b60b3cb582dc14fd89212e97'
|
2010-10-13 04:41:39 +00:00
|
|
|
end
|
2010-01-06 23:16:31 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2010-04-01 20:57:03 +00:00
|
|
|
winetricks is a set of utilities for wine, which is installed separately:
|
|
|
|
brew install wine
|
|
|
|
EOS
|
|
|
|
end
|
2010-01-06 23:16:31 +00:00
|
|
|
end
|