forked from openyou/emokit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
52 lines (37 loc) · 1.14 KB
/
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
45
46
47
48
49
50
Installation instructions for Linux (assuming ubuntu/debian packages)
CMAKE
Download : http://www.cmake.org/cmake/resources/software.html
Go in the download folder and execute :
tar xzvf cmake-2.8.10.2.tar.gz
cd cmake-2.8.10.2.tar.gz
./bootstrap
make
sudo make install
MCRYPT
First install the dependencies :
sudo apt-get install libmcrypt-dev libmhash-dev git
Download : http://sourceforge.net/projects/mcrypt/files/latest/download
Go in the download folder and execute :
tar xzvf mcrypt-2.6.8.tar.gz
cd mcrypt-2.6.8.tar.gz
./configure
make
make install
HIPAPI
First install the dependencies :
sudo apt-get install libudev-dev libusb-1.0-0-dev libtool
Download : https://github.com/signal11/hidapi/archive/master.zip
IT WILL NOT WORK if you downloaded from: hidapi-0.7.0.zip from https://github.com/signal11/hidapi/downloads or the command git clone git://github.com/signal11/hidapi.git
Extract the zip file and use the following commands :
unzip hidapid-master.zip
cd hidapid-master
./bootstrap
./configure
make
sudo make install
EMOKIT
Download https://github.com/openyou/emokit/archive/master.zip
unzip emokit-master.zip
cd emokit-master
cmake .
make