mirror of
https://github.com/webgefrickel/dotfiles
synced 2024-11-19 03:25:33 +00:00
41 lines
1.1 KiB
Bash
Executable File
41 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
brew tap homebrew/dupes
|
|
brew tap homebrew/php
|
|
brew tap homebrew/versions
|
|
|
|
# install additional brew packages -- see _install.sh too
|
|
brew install composer
|
|
brew install curl --with-ssl --with-libssh2
|
|
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac
|
|
brew install git-flow
|
|
brew install git-ftp
|
|
brew install imagemagick
|
|
brew install mariadb
|
|
brew install mozjpeg
|
|
brew install nginx --with-http2
|
|
brew install openssl
|
|
brew install php70 --with-homebrew-curl --with-homebrew-openssl
|
|
brew install php70-intl
|
|
brew install php70-mcrypt
|
|
brew install rsync
|
|
brew install rbenv
|
|
brew install the_silver_searcher
|
|
brew install youtube-dl
|
|
|
|
# everything needed for mutt
|
|
brew install mutt
|
|
brew install offlineimap
|
|
brew install w3m
|
|
brew install msmtp
|
|
brew install ripmime
|
|
|
|
# to install urlscan (for mutt) go here:
|
|
# https://github.com/firecat53/urlscan — download and
|
|
# sudo python3 setup.py install
|
|
|
|
# install a current ruby version
|
|
rbenv install 2.4.0
|
|
|
|
# use nvm instead of brew node or anything else
|
|
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.0/install.sh | bash
|