mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
14 lines
400 B
Ruby
14 lines
400 B
Ruby
class PathFinder < Cask
|
|
version 'latest'
|
|
sha256 :no_check
|
|
|
|
url 'http://get.cocoatech.com/PF6_LION.zip'
|
|
homepage 'http://www.cocoatech.com/pathfinder/'
|
|
|
|
link 'Path Finder.app'
|
|
|
|
after_install do
|
|
# Don't ask to move the app bundle to /Applications
|
|
system '/usr/bin/defaults', 'write', 'com.cocoatech.PathFinder', 'kNTMoveToApplicationsFolderAlertSuppress', '-bool', 'true'
|
|
end
|
|
end
|