mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
The ability to link any `.app` file without specifying the full path was
removed by c244385e. This means as of version 0.18.0 of `brew-cask` the
`alfred` cask has been broken, as it raises an error due to being unable
to find `Alfred Preferences.app` (since it is not located in the root
app directory).
7 lines
276 B
Ruby
7 lines
276 B
Ruby
class Alfred < Cask
|
|
url 'http://cachefly.alfredapp.com/Alfred_2.0.9_214.zip'
|
|
homepage 'http://www.alfredapp.com/'
|
|
version '2.0.9_214'
|
|
sha1 '550cba6dc44250ae5940c3d302cf06e199eb6958'
|
|
link 'Alfred 2.app', 'Alfred 2.app/Contents/Preferences/Alfred Preferences.app'
|
|
end
|