Newer
Older
Import / environment / Mac-brew.sh
#!/bin/bash


brew install curl git gcc@5 python sqlite3 imagemagick pngcrush jpegoptim libpng freetype

# Filesystem watcher
brew install watch

# Build system optimization
brew install ccache

# Code coverage html output generation for gcov
brew install lcov

# brew tap universal-ctags/universal-ctags
# brew install --HEAD universal-ctags
#  in vim files related to easytags, need to change the version check: 
#        if !xolox#easytags#initialize('0.0')  " JR: this is a work-around, brew version of universal tags reports 0.0.0



# To install symlinks for compilers that will automatically use
# ccache, prepend this directory to your PATH:
#   /usr/local/opt/ccache/libexec
#
# To have launchd start distcc now and restart at login:
#   brew services start distcc
# Or, if you don't want/need a background service you can just run:
#   distccd
#
#
# If you need to have sqlite first in your PATH run:
#   echo 'export PATH="/usr/local/opt/sqlite/bin:$PATH"' >> ~/.bash_profile
# 
# For compilers to find sqlite you may need to set:
#   export LDFLAGS="-L/usr/local/opt/sqlite/lib"
#   export CPPFLAGS="-I/usr/local/opt/sqlite/include"
# 
# For pkg-config to find sqlite you may need to set:
#   export PKG_CONFIG_PATH="/usr/local/opt/sqlite/lib/pkgconfig"