shoestrap/master-cookbook

132 lines
2.5 KiB
Plaintext
Raw Normal View History

2012-03-21 20:05:28 +00:00
#!/bin/bash
# Initialization - DO NOT REMOVE
. helpers/initialize
##############################################################
### Customizations start here ################################
##############################################################
2013-08-08 03:23:13 +00:00
# Get current directory for future use in links
cd $(dirname $0)
PROJECT_DIR=$(pwd)
2012-03-21 20:05:28 +00:00
2013-08-08 03:23:13 +00:00
detect_package_manager
2012-03-21 20:05:28 +00:00
2013-08-08 03:23:13 +00:00
init_paths_and_vars
# Do prompting early to make longer install easier
install_packages=false
if ! is_installed "packages" || prompt_yn "Reinstall packages?" ; then
install_packages=true
fi
install_vim_src=false
if [ "$PACKAGE_MANAGER" == 'apt-get' ]; then
# Optional
is_installed "vim-from-source"
if prompt_yn "Compile vim?" ; then
install_vim_src=true
fi
fi
2015-06-03 20:53:41 +00:00
install_neovim=false
is_installed "neovim"
if prompt_yn "Install Neovim?" ; then
install_neovim=true
fi
2013-08-08 03:23:13 +00:00
install_vim_settings=false
if ! is_installed "vim-settings" || prompt_yn "Reinstall vim-settings?" ; then
install_vim_settings=true
fi
# Optional
install_sfdc=false
is_installed "salesforce"
if prompt_yn "Install Salesforce tools?" ; then
install_sfdc=true
fi
# Optional
install_golang=false
is_installed "golang"
if prompt_yn "Install Go?" ; then
install_golang=true
fi
2012-03-21 20:05:28 +00:00
2015-06-03 20:53:20 +00:00
# Optional
install_fish=false
install_ohmyfish=false
install_fisherman=false
2015-06-03 20:53:20 +00:00
is_installed "fish"
is_installed "oh-my-fish"
is_installed "fisherman"
2015-06-03 20:53:20 +00:00
if prompt_yn "Install fish?" ; then
install_fish=true
if prompt_yn "Install oh-my-fish?" ; then
install_ohmyfish=true
elif prompt_yn "Install Fisherman?" ; then
install_fisherman=true
fi
2015-06-03 20:53:20 +00:00
fi
2012-03-21 20:05:28 +00:00
### Run recipes
2013-08-08 03:23:13 +00:00
recipe 'dotfiles'
recipe 'bin'
recipe 'git'
git submodule init
git submodule update
if $install_packages ; then
recipe 'packages'
set_installed "packages"
fi
if $install_vim_src ; then
recipe 'compile-install-vim'
set_installed "vim-from-source"
fi
2015-06-03 20:53:41 +00:00
if $install_neovim ; then
recipe 'neovim'
set_installed "neovim"
fi
2013-08-08 03:23:13 +00:00
if $install_vim_settings ; then
recipe 'vim-settings'
set_installed 'vim-settings'
fi
if $install_sfdc ; then
recipe 'salesforce'
set_installed 'salesforce'
fi
if $install_golang ; then
recipe 'golang'
set_installed 'golang'
fi
2012-03-21 20:05:28 +00:00
2015-06-03 20:53:20 +00:00
if $install_fish ; then
recipe 'fish-install'
2015-06-03 20:53:20 +00:00
set_installed 'fish'
fi
if $install_ohmyfish ; then
recipe 'oh-my-fish'
set_installed 'oh-my-fish'
fi
if $install_fisherman ; then
recipe 'fisherman'
set_installed 'fisherman'
fi
2012-03-21 20:05:28 +00:00
### Show the Finished banner
finished
2013-08-08 03:23:13 +00:00
# vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab