Mouse wheel now scrolls horizontally in piano roll.
[epichord.git] / INSTALL
blob4d308fc698657aa28e4a76ad9f650f61178eb4a6
1 This is autotools.
3 To build the program, do
5   ./configure
6   make
8 and then
10   make install
12 as root to install to the default location.
15 When you run into problems, make sure you have the dependency libraries
16 installed. FLTK 2 and JACK with midi support (any recent version) is
17 required. If you want LASH to actually work, you need the latest
18 release candidate. At the time I write this it is 0.6.0-rc2.
20 *NOTE that FLTK2's default configuration will not build the shared libs. 
21 Remember to use --enable-shared when building FLTK2.
23 After building you may have an error message about missing graphics and
24 buttons may appear blank. This is caused by not running 'make install'
25 and attempting to run the program from another location.
27 You may choose where to install the program by doing
29   ./configure --prefix=/usr
31 This will install the program in /usr (/usr/bin /usr/share and so on)
33 And if you do not want to install the program, you may set the location
34 the program searches for graphics and documentation with
36   ./configure --datadir=/usr/share
38 Note that in the above example, the program will search in the directory
40 /usr/share/epichord/gfx for the graphics and
41 /usr/share/epichord/doc for the documentation
43 In order to run the program from its current location without installing, 
44 for instance /home/bob/src/epichord you can do this
46   ./configure --datadir=/home/bob/src