From: ivan Date: Wed, 4 Aug 1999 04:15:20 +0000 (+0000) Subject: initial h2xs X-Git-Tag: freeside_1_2_2~32 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=1e3eae905b861761f93643aa5fce14a8be5d9ed2;hp=9f2781f5d45997c856e1930757daa2cb1d5cddcc initial h2xs --- diff --git a/FS/Changes b/FS/Changes new file mode 100644 index 000000000..c94ef10f5 --- /dev/null +++ b/FS/Changes @@ -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 index 000000000..c7defbc7f --- /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 index 000000000..c036308ed --- /dev/null +++ b/FS/MANIFEST @@ -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 index 000000000..22b412d21 --- /dev/null +++ b/FS/Makefile.PL @@ -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 index 000000000..dc3726236 --- /dev/null +++ b/FS/test.pl @@ -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): +