Blame docs/build-on-darwin.md

Packit bfcc33
To install LibSass, make sure the OS X build tools are installed:
Packit bfcc33
Packit bfcc33
    xcode-select --install
Packit bfcc33
Packit bfcc33
## Homebrew
Packit bfcc33
Packit bfcc33
To install homebrew, see [http://brew.sh](http://brew.sh)
Packit bfcc33
Packit bfcc33
    ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Packit bfcc33
Packit bfcc33
You can install the latest version of LibSass quite easily with brew.
Packit bfcc33
Packit bfcc33
    brew install --HEAD libsass
Packit bfcc33
Packit bfcc33
To update this, do:
Packit bfcc33
Packit bfcc33
    brew reinstall --HEAD libsass
Packit bfcc33
Packit bfcc33
Brew will build static and shared libraries, and a `libsass.pc` file in `/usr/local/lib/pkgconfig`.
Packit bfcc33
Packit bfcc33
To use `libsass.pc`, make sure this path is in your `PKG_CONFIG_PATH`
Packit bfcc33
Packit bfcc33
    export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig
Packit bfcc33
Packit bfcc33
## Manually
Packit bfcc33
Packit bfcc33
See the linux instructions [Building-with-autotools](build-with-autotools.md) or [Building-with-makefiles](build-with-makefiles.md)