Skip to content

Instantly share code, notes, and snippets.

@beetleman
Last active November 6, 2016 13:21
Show Gist options
  • Save beetleman/4d70a7ae09773b00d213ddbae4102baf to your computer and use it in GitHub Desktop.
Save beetleman/4d70a7ae09773b00d213ddbae4102baf to your computer and use it in GitHub Desktop.
instaling sassc in ~/bin/
DIR=/tmp/build_scss
mkdir $DIR -p
cd $DIR
git clone https://github.com/sass/libsass.git
export SASS_LIBSASS_PATH=$DIR/libsass
git clone https://github.com/sass/sassc.git
cd $DIR/sassc
make -j4
mkdir ~/bin -p
cp bin/sassc ~/bin/
cd
rm -rf $DIR
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment