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