Added present service
[simpleserver-moved-to-github.git] / INSTALL
1 Building and installation
2 -------------------------
3
4
5 1. Requirements
6
7 The Net::Z3950::SimpleServer Perl module requires the YAZ toolkit
8 in the development version 1.7. You can download it via this link,
9
10         http://ftp.indexdata.dk/pub/yaz/development/
11
12 You need to configure the YAZ toolkit with the command
13
14         % ./configure --enable-shared
15
16 Then compile and install
17
18         % make
19         # make install
20
21 You don't *need* to install YAZ globally on your machine if you
22 prefer not to. In this case, you just have to update the Makefile.PL
23 with the locations of the libraries.
24
25 2. Installation
26
27 Unpack the tar ball this way
28
29         % gunzip Net-Z3950-SimpleServer-xxxx.tar.gz
30         % tar xvf Net-Z3950-SimpleServer-xxxx.tar.gz
31
32 and cd to the root directory of the module package
33
34         % cd Net-Z3950-SimpleServer-xxxx
35
36 The installation takes place by issuing the following commands:
37
38         % perl Makefile.PL
39         % make
40         % make test
41         # make install
42
43 The last command has to be issued as super user.
44
45 Good luck!
46
47 Anders Sønderberg <sondberg@indexdata.dk>
48 http://www.indexdata.dk/
49
50
51