1==== BASIC INSTALLATION ====
2
30. INSTALL REQUIRED SOFTWARE
4
5  A. You'll need the Xcode tools installed before you can do anything.
6
7  B. You *MUST* install libusb. It's fairly straight forward to install, it should
8     be:
9       ./configure --prefix=/usr
10       make
11       sudo make install
12
13     If you get errors about -System while building libusb, upgrade your version of
14     Xcode.
15
16  C. Install libconcord - also from the concordance project. See the install
17     instructions provided with libconcord.
18
191. BUILD THE SOFTARE
20
21   As a normal user...
22     A. ***IF**** You are building from CVS, run "autoreconf --install"
23     B. Run "./configure"
24     C. Run "make"
25
26Various options, such as '--prefix' are available to the configure script to
27help you choose where software gets installed and how it is built.
28
292. INSTALL THE SOFTWARE
30
31As root, simply run "make install"
32
33
34==== EXTRA INSTALL NOTES ====
35By default this software installs in /usr/local/lib. You can override the PREFIX
36(/usr/local) by passing a PREFIX variable to make:
37
38  make PREFIX=/usr
39
40
41==== RUNNING THE SOFTWARE IN MAC ====
42
43Unlike other libusb platforms, you do not have to have root access to use
44libusb, thus you can run concordance as an ordinary user.
45
46
47vim:textwidth=78:
48