-
Notifications
You must be signed in to change notification settings - Fork 0
/
.software
45 lines (40 loc) · 810 Bytes
/
.software
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# Software #
# Install Java JDK
read -p "Install Java JDK? " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
brew tap caskroom/versions
brew cask install java8
fi
# Install Android SDK, Gradle and Android Studio
read -p "Install Android SDK, Gradle and Android Studio? " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
brew tap caskroom/cask
brew install gradle
brew cask install android-sdk
brew cask install android-studio
fi
# Install Genymotion
read -p "Install Genymotion? " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
brew cask install genymotion
fi
# Install Spectacle
read -p "Install Spectacle? " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
brew cask install spectacle
fi
# Install Flux
read -p "Install Flux? " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]
then
brew cask install flux
fi