mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
These packages are: xamarin-android, xamarin-ios, and xamarin-studio. They have been added to homebrew-versions. Only call caveats once on Xamarin cask
19 lines
444 B
Ruby
19 lines
444 B
Ruby
class Xamarin < Cask
|
|
version 'latest'
|
|
sha256 :no_check
|
|
|
|
url 'http://download.xamarin.com/Installer/Mac/XamarinInstaller.dmg'
|
|
homepage 'http://xamarin.com/platform'
|
|
|
|
caskroom_only true
|
|
|
|
caveats do
|
|
puts 'This app requires the JRE (Java Runtime Environment) to be installed'
|
|
manual_installer 'Install Xamarin.app'
|
|
end
|
|
|
|
uninstall :files => [
|
|
'/Applications/Xamarin Studio.app',
|
|
'~/Library/Developer/Xamarin'
|
|
]
|
|
end
|