work on PRINT encoding
[pspp] / perl-module / README
1 PSPP version 0.7
2 ================
3
4 This module provides an interface allowing perl programs to create pspp 
5 system files.
6
7 INSTALLATION
8
9 To install you must have first installed and built pspp 0.7.2 or
10 later.  The Perl module does not use the installed PSPP binaries, but
11 it does require the libpspp-core-$VERSION.so library installed with
12 PSPP (see below).
13
14 To install this module type the following:
15
16    perl Makefile.PL
17    make
18    make install
19    make test
20
21 For "make test" to succeed, Perl must be able to find
22 libpspp-core-$VERSION.so.  It can do so if "make install" has been run
23 (as shown above), or if LD_LIBRARY_PATH points to it (e.g. in
24 src/.libs).  Running "make check" from the top-level build directory
25 will automatically set LD_LIBRARY_PATH.
26
27
28 DEPENDENCIES
29
30 This module requires the POSIX module.
31
32 The modules Test::More, Text::Diff, File::Temp and the pspp source are
33 required during installation, but are not needed to run the module.
34
35
36 COPYRIGHT AND LICENCE
37
38 Copyright (C) 2007, 2009, 2010 by Free Software Foundation
39
40 This program is free software; you can redistribute it and/or
41 modify it under the terms of the GNU General Public License as
42 published by the Free Software Foundation; either version 2 of the
43 License, or (at your option) any later version.
44
45 This program is distributed in the hope that it will be useful, but
46 WITHOUT ANY WARRANTY; without even the implied warranty of
47 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
48 General Public License for more details.
49
50 You should have received a copy of the GNU General Public License
51 along with this program; if not, write to the Free Software
52 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
53 02110-1301, USA.
54