blob: 0689592e408209c4e8dc1434b58f425604611da2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
Perl-RPM - Native bindings to the RPM Package Manager API for Perl
Version 0.1 (first alpha)
WHAT IS IT
The Perl-RPM package is an attempt to provide Perl-level access to the complete
application programming interface that is a part of the RPM Package Manager
(RPM). Rather than have scripts rely on executing RPM commands and parse the
resultant output, this modules aims to provide Perl programmers the ability
to do anything that would otherwise have been done in C or C++.
The interface is being designed and laid out as a collection of classes, at
least some of which are also available as tied-hash implementations.
At this time, the interface only provides access to the database of installed
packages, and header data retrieval for RPM and SRPM files not yet installed.
BUILDING/INSTALLING
This package is set up to configure and build like a typical Perl extension.
To build:
perl Makefile.PL
make && make test
If the RPM package passes all tests, then:
make install
You may need super-user access to install.
PROBLEMS/BUG REPORTS
Please send any reports of problems or bugs to rjray@blackperl.com.
CHANGES
This is the first release. At present, only RPM::Database and RPM::Header
are implemented.
LICENSE
This package is Copyright (C) 2000 by Randy J. Ray (rjray@blackperl.com). You
may distribute this under the terms of Artistic License, as specified in the
README file of Perl itself. Please see the file ARTISTIC in your distribution
of Perl.
|