forked from jkenlooper/skin-makefile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
brewinstall.sh
49 lines (42 loc) · 1.06 KB
/
brewinstall.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
#!/bin/sh -e
# Install all the commands necessary for running the Skin Makefile
# Based on `install.sh` but with the following updates:
#
# - Uses `brew` to install packages on OS X (instead of apt-get)
# - Uses the same version specs from the Makefile
# add to common packages
# curl (already on OS X)
# md5sum (md5sha1sum)
# python (just a cleaner Python 2.7.x install)
# optipng
# npm
brew install python
brew install md5sha1sum
brew install optipng
brew install node
brew install npm
brew install jq
# pip install ...
# pillow (required for Glue)
# glue
# verify_version_spec
pip install "pillow < 2.9";
pip install "glue < 0.12";
pip install verify_version_spec;
# npm install -g
# uglify-js
# clean-css
# component
# bower
# less
# autoprefixer
# stripmq
npm install -g "uglify-js@<3.0";
npm install -g "clean-css@<4.0";
npm install -g component;
npm install -g "bower@<1.7";
npm install -g less;
npm install -g autoprefixer-cli;
npm install -g stripmq;
# install custom fork of suitcss
npm install -g git://github.com/jkenlooper/preprocessor#0.5.0-depends.1;