• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/H05-Sep-2020-1,180575

t/H05-Sep-2020-626451

COPYINGH A D07-Jul-201834.2 KiB677553

ChangesH A D01-Dec-2019372 149

Examples.podH A D01-Dec-20194.3 KiB163106

MANIFESTH A D07-Jul-2018128 1413

Makefile.PLH A D01-Dec-20192.9 KiB6940

PSPP.xsH A D01-Dec-201916.8 KiB819639

READMEH A D01-Dec-20191.6 KiB5335

automake.mkH A D01-Dec-20193.2 KiB9262

ppport.hH A D10-Jun-2020116.1 KiB4,9731,829

typemapH A D06-Oct-20192.1 KiB7059

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