From 6933f35713ab04ef22d147e6aa2dfb0bbc068a2b Mon Sep 17 00:00:00 2001 From: Martin Madsen Date: Sun, 29 Jun 2014 01:01:26 +0200 Subject: [PATCH] Add Casks XamarinAndroid, XamarinIos, and XamarinStudio These have been replaced by the Xamarin Cask in homebrew-cask. They are locked at the following versions, as Xamarin has bundled all three in a new, universal installer retrieved by the Xamarin Cask added in pull request caskroom/homebrew-cask#5118. --- Casks/xamarin-android.rb | 10 ++++++++++ Casks/xamarin-ios.rb | 10 ++++++++++ Casks/xamarin-studio.rb | 9 +++++++++ 3 files changed, 29 insertions(+) create mode 100644 Casks/xamarin-android.rb create mode 100644 Casks/xamarin-ios.rb create mode 100644 Casks/xamarin-studio.rb diff --git a/Casks/xamarin-android.rb b/Casks/xamarin-android.rb new file mode 100644 index 000000000..b9be379d2 --- /dev/null +++ b/Casks/xamarin-android.rb @@ -0,0 +1,10 @@ +class XamarinAndroid < Cask + version '4.12.3-3' + sha256 'e32095f71cd6bdfa190f3f1bc3a8b31d460c7f6845bfed6b851af10c1e0cfe58' + + url 'http://download.xamarin.com/MonoforAndroid/Mac/mono-android-4.12.3-3.pkg' + homepage 'http://xamarin.com/android' + + install 'mono-android-4.12.3-3.pkg' + uninstall :pkgutil => 'com.xamarin.android.pkg' +end diff --git a/Casks/xamarin-ios.rb b/Casks/xamarin-ios.rb new file mode 100644 index 000000000..2b1d5b6e2 --- /dev/null +++ b/Casks/xamarin-ios.rb @@ -0,0 +1,10 @@ +class XamarinIos < Cask + version '7.2.1.25' + sha256 'd95afc2fafd3e773809e18d39f1b830e0df172f39d3f60b0cfa55f4058eb19a2' + + url 'http://download.xamarin.com/MonoTouch/Mac/monotouch-7.2.1.25.pkg' + homepage 'http://xamarin.com/ios' + + install 'monotouch-7.2.1.25.pkg' + uninstall :pkgutil => 'com.xamarin.monotouch.pkg' +end diff --git a/Casks/xamarin-studio.rb b/Casks/xamarin-studio.rb new file mode 100644 index 000000000..4061fc392 --- /dev/null +++ b/Casks/xamarin-studio.rb @@ -0,0 +1,9 @@ +class XamarinStudio < Cask + version '4.2.4' + sha256 'd5c2519822b134034d9d7ef6aad0c3311ca9fabc9d97b1069223125dca5ce1f1' + + url 'http://download.xamarin.com/studio/Mac/XamarinStudio-4.2.4.35-0.dmg' + homepage 'http://xamarin.com/studio' + + link 'Xamarin Studio.app' +end