summaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-08-06 21:11:17 +0200
committerHenrik Rydberg <rydberg@euromail.se>2010-08-06 21:11:17 +0200
commit7db9d8d76ff61c4802ac15559dcea6fa54ff567a (patch)
treeb67e040c0abeb0ab1fca72754a767dc9ab851461 /INSTALL
initial bzr repo at rev 27
Diffstat (limited to 'INSTALL')
-rw-r--r--INSTALL32
1 files changed, 32 insertions, 0 deletions
diff --git a/INSTALL b/INSTALL
new file mode 100644
index 0000000..4e42ff7
--- /dev/null
+++ b/INSTALL
@@ -0,0 +1,32 @@
1grail - Gesture Recognition And Instantiation Library
2
3To build, you need to have the autoconf, libtool and mtdev-dev packages
4installed. Then, do
5
6 ./autogen.sh
7 ./configure
8 make
9
10To test the touch properties of an MT device at /dev/input/eventX, do
11
12 sudo ./test/grail-touch /dev/input/eventX
13
14You should be able to see touch events in the terminal. After five
15seconds of inactivity, the program exits.
16
17To test gestures, do
18
19 sudo ./test/grail-gesture 0xffffffff /dev/input/eventX
20
21You should be able to see gesture events in the terminal. After five
22seconds of inactivity, the program exits.
23
24To install grail, do
25
26 sudo make install
27
28By default, grail installs to /usr/local. To change, use the --prefix
29configure option.
30
31Enjoy,
32Henrik