forked from hadrienl/yoshioka.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
43 lines (31 loc) · 840 Bytes
/
INSTALL
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
REQUIREMENTS
- Node.js
wget http://nodejs.org/dist/node-v0.6.2.tar.gz
tar xvzf node-v0.6.2.tar.gz
cd node-v0.6.2
./configure
make
sudo make install
- npm (optional, for Less)
git clone https://github.com/isaacs/npm.git
cd npm
./configure
make
sudo make install
- Less (http://lesscss.org/)
sudo npm install less -g
- Java Runtime
sudo apt-get install default-jre (for a debian like distrib)
INSTALLATION
mkdir yourapp
cd yourapp
- With git
git init
git submodule add git://github.com/hadrienl/yoshioka.js.git
- Without git
wget https://github.com/hadrienl/yoshioka.js/tarball/0.1
tar xvzf hadrienl-yoshioka.js-0.1-0-xxxxx.tar.gz
rm hadrienl-yoshioka.js-0.1-0-xxxxx.tar.gz
mv hadrienl-yoshioka.js-0.1-0-xxxxx.tar.gz yoshioka.js
node yoshioka.js
install