To build SassC, you must have either local copy of the LibSass source or it must be installed into your system. For development, please use the source version. You must then setup an environment variable pointing to the libsass folder, like:
export SASS_LIBSASS_PATH=/Users/you/path/libsass
The executable will be in the bin folder. To run it, simply try something like
./bin/sassc [input file] > output.css
-
Clone the libsass repo:
git clone https://github.com/sass/libsass.git
-
Edit your .bash_profile to include libsass directory:
export SASS_LIBSASS_PATH=/Users/you/path/libsass
-
Clone the sassC repo
git clone https://github.com/sass/sassc.git
-
cd into the sassC repo
cd ./sassc
-
Type 'make'
make
-
Job done!