Orphans.
authorjbj <devnull@localhost>
Wed, 14 Jul 1999 16:53:57 +0000 (16:53 +0000)
committerjbj <devnull@localhost>
Wed, 14 Jul 1999 16:53:57 +0000 (16:53 +0000)
CVS patchset: 3159
CVS date: 1999/07/14 16:53:57

perl/ChangeLog [new file with mode: 0644]
perl/MANIFEST [new file with mode: 0644]
perl/Makefile.PL [new file with mode: 0644]
perl/README [new file with mode: 0644]

diff --git a/perl/ChangeLog b/perl/ChangeLog
new file mode 100644 (file)
index 0000000..bd65592
--- /dev/null
@@ -0,0 +1,10 @@
+1999-07-14  Cristian Gafton  <gafton@redhat.com>
+
+       * test.pl: Added test for the number fo tags and the number of 
+       files in the test package
+
+Revision history for Perl extension rpm.
+
+0.01  Mon Jul 12 13:07:43 1999
+       - original version; created by h2xs 1.19
+
diff --git a/perl/MANIFEST b/perl/MANIFEST
new file mode 100644 (file)
index 0000000..24d9a22
--- /dev/null
@@ -0,0 +1,10 @@
+ChangeLog
+MANIFEST
+Makefile.PL
+constant.c
+rpm.pm
+rpm.xs
+test.pl
+typemap
+foo.i386.rpm
+junk.xs
diff --git a/perl/Makefile.PL b/perl/Makefile.PL
new file mode 100644 (file)
index 0000000..dbee47b
--- /dev/null
@@ -0,0 +1,11 @@
+use ExtUtils::MakeMaker;
+# See lib/ExtUtils/MakeMaker.pm for details of how to influence
+# the contents of the Makefile that is written.
+WriteMakefile(
+             'NAME'    => 'rpm',
+             'OBJECT'  => 'rpm.o constant.o',
+             'VERSION_FROM' => 'rpm.pm', # finds $VERSION
+             'LIBS'    => ['-lrpm -lz'],   # e.g., '-lm' 
+             'DEFINE'  => '-Wall',     # e.g., '-DHAVE_SOMETHING' 
+             'INC'     => '-I/usr/include/rpm',     # e.g., '-I/usr/include/other' 
+);
diff --git a/perl/README b/perl/README
new file mode 100644 (file)
index 0000000..4caa313
--- /dev/null
@@ -0,0 +1,6 @@
+Copyright (c) 1999 Red Hat, Inc. All rights reserved. 
+
+Developed by Cristian Gafton <gafton@redhat.com>
+
+This program is free software; you can redistribute it and/or 
+modify it under the same terms as Perl itself.