homebrew-cask/Casks/subutaicontrolcenter.rb

24 lines
884 B
Ruby

cask 'subutaicontrolcenter' do
version '7.1.5'
sha256 '17e043558ea478fdab9b6b497a76412bbe58fb97efd43fabf0e894e74e6bdf97'
# cdn.subutai.io:8338/kurjun/rest/raw was verified as official when first introduced to the cask
url 'https://cdn.subutai.io:8338/kurjun/rest/raw/get?name=subutai-control-center.pkg'
appcast 'https://github.com/subutai-io/control-center/releases.atom'
name 'Subutai Control Center'
homepage 'https://subutai.io/'
auto_updates true
pkg 'subutai-control-center.pkg'
# This is a horrible hack to force the file extension.
# The backend code should be fixed so that this is not needed.
preflight do
system_command '/bin/mv', args: ['--', staged_path.join('get'), staged_path.join('subutai-control-center.pkg')]
end
uninstall pkgutil: 'com.Subutai.Control.Center',
delete: '/Applications/SubutaiControlCenter.app'
end