Add dependencies.

This commit is contained in:
Ivan Malison 2014-10-20 16:48:24 -07:00
parent 153d70beb0
commit 69a086121c
4 changed files with 6 additions and 5 deletions

1
.gitignore vendored
View File

@ -6,3 +6,4 @@ dotfiles/sbt/0.13/plugins/target/
dotfiles/sbt/boot/
dotfiles/.pip/download_cache
dotfiles/.pip/pip.log
dotfiles/config/hub

@ -1 +1 @@
Subproject commit 7e87d26e6e063d00f73f10219eb8d36942a7b847
Subproject commit 53f4c485126eccf9666e8304ea09fd1f48193624

View File

@ -10,7 +10,7 @@ def all(ctx):
linux_pacakges = ('zsh', 'tmux', 'emacs24-nox', 'nmap', 'scala', 'default-jdk',
'default-jre', 'python-virtualenv', 'htop', 'netcat', 'wget',
'zlib1g-dev', 'libxml2-dev', 'libxslt1-dev', 'python-dev',
'libncurses5-dev', 'npm')
'libncurses5-dev', 'npm', 'python3-dev')
@ctask
def apt_get(ctx):
install_command = 'sudo apt-get -y install'

View File

@ -15,7 +15,7 @@ def all(ctx):
ESSENTIAL = (
"emacs", "tmux", "python --with-brewed-openssl", "htop", "zsh", "make",
"emacs --cocoa --srgb --with-x", "tmux", "python --with-brewed-openssl", "htop", "zsh", "make",
"macvim --override-system-vim --custom-system-icons --with-features=huge "
"--enable-rubyinterp --enable-pythoninterp --enable-perlinterp --enable-cscope"
)
@ -34,7 +34,7 @@ MISC = ("file-formula", "less", "openssh --with-brewed-openssl",
"perl518", "rsync", "svn", "unzip", "docker", "boot2docker", "pandoc",
"mercurial")
CASKS = ('alfred', 'caffeine', 'flux', 'google-chrome', 'iterm2', 'spotify', 'vlc', 'virtualbox')
CASKS = ('alfred', 'caffeine', 'flux', 'google-chrome', 'iterm2', 'spotify', 'vlc', 'virtualbox', 'xquartz')
@ctask
def osx_config(ctx):
ctx.run('source {0}; osx_config'.format(os.path.join(RESOURCES_DIRECTORY, 'osx.sh')))