initial h2xs
authorivan <ivan>
Wed, 4 Aug 1999 04:15:20 +0000 (04:15 +0000)
committerivan <ivan>
Wed, 4 Aug 1999 04:15:20 +0000 (04:15 +0000)
FS/Changes [new file with mode: 0644]
FS/FS.pm [new file with mode: 0644]
FS/MANIFEST [new file with mode: 0644]
FS/Makefile.PL [new file with mode: 0644]
FS/test.pl [new file with mode: 0644]

diff --git a/FS/Changes b/FS/Changes
new file mode 100644 (file)
index 0000000..c94ef10
--- /dev/null
@@ -0,0 +1,5 @@
+Revision history for Perl extension FS.
+
+0.01  Wed Aug  4 00:13:45 1999
+       - original version; created by h2xs 1.19
+
diff --git a/FS/FS.pm b/FS/FS.pm
new file mode 100644 (file)
index 0000000..c7defbc
--- /dev/null
+++ b/FS/FS.pm
@@ -0,0 +1,51 @@
+package FS;
+
+use strict;
+use vars qw($VERSION @ISA @EXPORT @EXPORT_OK);
+
+require Exporter;
+
+@ISA = qw(Exporter AutoLoader);
+# Items to export into callers namespace by default. Note: do not export
+# names by default without a very good reason. Use EXPORT_OK instead.
+# Do not simply export all your public functions/methods/constants.
+@EXPORT = qw(
+       
+);
+$VERSION = '0.01';
+
+
+# Preloaded methods go here.
+
+# Autoload methods go after =cut, and are processed by the autosplit program.
+
+1;
+__END__
+# Below is the stub of documentation for your module. You better edit it!
+
+=head1 NAME
+
+FS - Perl extension for blah blah blah
+
+=head1 SYNOPSIS
+
+  use FS;
+  blah blah blah
+
+=head1 DESCRIPTION
+
+Stub documentation for FS was created by h2xs. It looks like the
+author of the extension was negligent enough to leave the stub
+unedited.
+
+Blah blah blah.
+
+=head1 AUTHOR
+
+A. U. Thor, a.u.thor@a.galaxy.far.far.away
+
+=head1 SEE ALSO
+
+perl(1).
+
+=cut
diff --git a/FS/MANIFEST b/FS/MANIFEST
new file mode 100644 (file)
index 0000000..c036308
--- /dev/null
@@ -0,0 +1,5 @@
+Changes
+FS.pm
+MANIFEST
+Makefile.PL
+test.pl
diff --git a/FS/Makefile.PL b/FS/Makefile.PL
new file mode 100644 (file)
index 0000000..22b412d
--- /dev/null
@@ -0,0 +1,7 @@
+use ExtUtils::MakeMaker;
+# See lib/ExtUtils/MakeMaker.pm for details of how to influence
+# the contents of the Makefile that is written.
+WriteMakefile(
+    'NAME'     => 'FS',
+    'VERSION_FROM' => 'FS.pm', # finds $VERSION
+);
diff --git a/FS/test.pl b/FS/test.pl
new file mode 100644 (file)
index 0000000..dc37262
--- /dev/null
@@ -0,0 +1,20 @@
+# Before `make install' is performed this script should be runnable with
+# `make test'. After `make install' it should work as `perl test.pl'
+
+######################### We start with some black magic to print on failure.
+
+# Change 1..1 below to 1..last_test_to_print .
+# (It may become useful if the test is moved to ./t subdirectory.)
+
+BEGIN { $| = 1; print "1..1\n"; }
+END {print "not ok 1\n" unless $loaded;}
+use FS;
+$loaded = 1;
+print "ok 1\n";
+
+######################### End of black magic.
+
+# Insert your test code below (better if it prints "ok 13"
+# (correspondingly "not ok 13") depending on the success of chunk 13
+# of the test code):
+