mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
This links the latest client installer for the LogMeIn Hamachi service. closes #1051 Signed-off-by: phinze <paul.t.hinze@gmail.com>
15 lines
399 B
Ruby
15 lines
399 B
Ruby
class Hamachi < Cask
|
|
url 'https://secure.logmein.com/LogMeInHamachi.zip'
|
|
homepage 'http://vpn.net'
|
|
version 'latest'
|
|
no_checksum
|
|
link 'LogMeInHamachiInstaller.app'
|
|
|
|
def caveats
|
|
<<-EOS.undent
|
|
This Cask downloads the specialized LogMeIn Hamachi installer.
|
|
Run it once to install Hamachi:
|
|
open '#{self.destination_path}/LogMeInHamachiInstaller.app'
|
|
EOS
|
|
end
|
|
end
|