7bd947eb0b
* Use new "url" features * Use keg_only DSL * Use "skip_clean :all" DSL * Whitespace and style cleanups * Make bash invocations less silly * Use new man2-man8 helpers * Remove "FileUtils." since it is included in Formula * Use real names for deps instead of aliases * ENV.x11 now updates path, so remove that from individual brews
18 lines
499 B
Ruby
18 lines
499 B
Ruby
require 'formula'
|
|
|
|
class Winetricks < ScriptFileFormula
|
|
url 'http://winezeug.googlecode.com/svn-history/r1019/trunk/winetricks',
|
|
:using => curl
|
|
version '20100316'
|
|
md5 '79ab153ae51289ec7c25c7b7ed5d68ff'
|
|
homepage 'http://wiki.winehq.org/winetricks'
|
|
|
|
head 'http://winezeug.googlecode.com/svn/trunk/winetricks',
|
|
:using => curl
|
|
|
|
def caveats; <<-EOS.undent
|
|
winetricks is a set of utilities for wine, which is installed separately:
|
|
brew install wine
|
|
EOS
|
|
end
|
|
end
|