homebrew-cask/Casks/path-finder.rb

20 lines
584 B
Ruby
Raw Normal View History

2013-05-02 08:07:30 +08:00
class PathFinder < Cask
2014-09-17 19:42:56 +08:00
version :latest
2014-05-08 20:51:31 +08:00
sha256 :no_check
2014-09-03 19:02:12 +08:00
url 'http://get.cocoatech.com/PF7.zip'
homepage 'http://www.cocoatech.com/pathfinder/'
2014-10-01 23:33:35 +08:00
license :unknown
2014-09-16 00:06:06 +08:00
app 'Path Finder.app'
2014-09-09 20:55:27 +08:00
postflight do
# Don't ask to move the app bundle to /Applications
system '/usr/bin/defaults', 'write', 'com.cocoatech.PathFinder', 'kNTMoveToApplicationsFolderAlertSuppress', '-bool', 'true'
end
2014-09-18 19:57:58 +08:00
zap :delete => [
'~/Library/Preferences/com.cocoatech.PathFinder.plist',
'~/Library/Application Support/Path Finder',
]
2013-05-02 08:07:30 +08:00
end