mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
Make caveats a first-class member of the Cask DSL. It no longer has to be specified with "def caveats", but can be given as "caveats do ... end" as with after_install blocks. In addition, create a mini-DSL which can be used within caveats blocks, providing standard messages when manual installers must be used, reboot-required, etc. Add alternate form: caveats can also accept a compile-time string for simple cases. This is 99% compatible with old Casks, as it still works by defining a caveats method. However, all Casks containing caveats are cleaned up and adapted according to the new DSL. Full docs in CONTRIBUTING.md.
10 lines
440 B
Ruby
10 lines
440 B
Ruby
class Deeper < Cask
|
|
url 'http://joel.barriere.pagesperso-orange.fr/dl/109/Deeper.dmg'
|
|
homepage 'http://www.titanium.free.fr/downloaddeeper.php'
|
|
version 'latest'
|
|
no_checksum
|
|
link 'Deeper.app'
|
|
caveats <<-EOS.undent
|
|
This version of Deeper is for OS X Mavericks only. If you are using other versions of OS X, please run 'brew tap caskroom/versions' and install deeper-mountainlion / deeper-lion / deeper-snowleopard
|
|
EOS
|
|
end
|