forked from facette/facette
-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
44 lines (28 loc) · 841 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
44
Installation
============
Requirements
------------
* Go language environment (>= 1.2)
* RRDtool library and development files (>= 1.4.0)
* pkg-config helper tool
* Node.js "npm" package manager
* Pandoc document converter
Debian/Ubuntu:
apt-get install build-essential golang-go librrd-dev pkg-config npm pandoc
Mac OS X (with brew):
brew install rrdtool pkg-config npm pandoc
Build Instructions
------------------
Run the building command:
cd facette
make
make install
By default Facette will be built in the `build` directory and installed in the `/usr/local` one. To change the
installation directory set the `PREFIX` variable:
sudo make PREFIX=/path/to/directory install
Additional Targets
------------------
Run the various test suites:
make test
Clean the building environment:
make clean