dotfiles/start.sh
2014-12-20 03:21:33 -08:00

57 lines
1.3 KiB
Bash

#!/bin/bash
function fedora() {
yum install make automake gcc gcc-c++ kernel-devel
yum install
yum install python-pip
}
function debian() {
local INSTALL_COMMAND='sudo apt-get -y install'
hash apt-get &>/dev/null || (echo 'apt-get is missing.' && exit)
$INSTALL_COMMAND build-essential git python python-dev python-pip
}
function brew_for_multiple_users() {
sudo chgrp -R admin /usr/local
sudo chmod -R g+w /usr/local
sudo chgrp -R admin /Library/Caches/Homebrew
sudo chmod -R g+w /Library/Caches/Homebrew
}
function osx() {
hash gcc &>/dev/null
if [ $? -ne 0 ]
then
echo "gcc not found."
exit
fi
hash brew &>/dev/null && echo "brew found" || ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
brew_for_multiple_users
brew update
brew install git
brew install python
easy_install pip
}
function go() {
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &
git clone https://github.com/IvanMalison/dotfiles.git --recursive
cd dotfiles
sudo pip install invoke dotfiles
invoke setup
}
while true; do sudo -n true; sleep 60; kill -0 "$$" || exit; done 2>/dev/null &
case `uname` in
'Darwin')
osx
;;
'Linux')
debian
;;
esac
go