|
Revision 3326, 1.0 kB
(checked in by morris, 3 years ago)
|
Sync
|
| Line | |
|---|
| 1 |
PREREQUISITES |
|---|
| 2 |
============= |
|---|
| 3 |
|
|---|
| 4 |
To install Wire, you need the following prerequisites: |
|---|
| 5 |
|
|---|
| 6 |
1. OpenSSL Library |
|---|
| 7 |
http://www.openssl.org/source/ |
|---|
| 8 |
|
|---|
| 9 |
2. GNU libiconv |
|---|
| 10 |
http://www.gnu.org/software/libiconv/ |
|---|
| 11 |
|
|---|
| 12 |
3. GNU readline |
|---|
| 13 |
http://cnswww.cns.cwru.edu/php/chet/readline/rltop.html |
|---|
| 14 |
|
|---|
| 15 |
These are usually distributed with operating systems. |
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
INSTALLATION |
|---|
| 19 |
============ |
|---|
| 20 |
|
|---|
| 21 |
To install Wire, follow these instructions: |
|---|
| 22 |
|
|---|
| 23 |
1. Unpack the tarball: |
|---|
| 24 |
|
|---|
| 25 |
tar -xzf wire-X.X.tar.gz |
|---|
| 26 |
cd wire-X.X.tar.gz |
|---|
| 27 |
|
|---|
| 28 |
2. Run the configuration script: |
|---|
| 29 |
|
|---|
| 30 |
./configure |
|---|
| 31 |
|
|---|
| 32 |
This will install Wire into /usr/local/bin by default. To |
|---|
| 33 |
change this, instead run: |
|---|
| 34 |
|
|---|
| 35 |
./configure --prefix=PATH |
|---|
| 36 |
|
|---|
| 37 |
3. Run make. Note, GNU make is required. |
|---|
| 38 |
|
|---|
| 39 |
gmake |
|---|
| 40 |
|
|---|
| 41 |
4. If make is successful, install the software: |
|---|
| 42 |
|
|---|
| 43 |
gmake install |
|---|
| 44 |
|
|---|
| 45 |
This will require write permissions to /usr/local/bin, or |
|---|
| 46 |
whatever directory you set as the prefix above. |
|---|
| 47 |
|
|---|
| 48 |
|
|---|
| 49 |
RUNNING |
|---|
| 50 |
======= |
|---|
| 51 |
|
|---|
| 52 |
To start Wire, simply run: |
|---|
| 53 |
|
|---|
| 54 |
wire |
|---|