Mercurial > hg > Applications > Calcon
changeset 0:111809a2ea45
Initial revision
author | kono |
---|---|
date | Fri, 24 Jan 2003 13:35:33 +0900 |
parents | |
children | 144819f5d2f6 |
files | MANIFEST README t/1.t |
diffstat | 3 files changed, 59 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/MANIFEST Fri Jan 24 13:35:33 2003 +0900 @@ -0,0 +1,6 @@ +Calcon.pm +Changes +Makefile.PL +MANIFEST +README +t/1.t
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/README Fri Jan 24 13:35:33 2003 +0900 @@ -0,0 +1,38 @@ +Calcon version 0.01 +=================== + +The README is used to introduce the module and provide instructions on +how to install the module, any machine dependencies it may have (for +example C compilers and installed libraries) and any other information +that should be provided before the module is installed. + +A README file is required for CPAN modules since CPAN extracts the +README file from a module distribution so that people browsing the +archive can use it get an idea of the modules uses. It is usually a +good idea to provide version information here so that people can +decide whether fixes for the module are worth downloading. + +INSTALLATION + +To install this module type the following: + + perl Makefile.PL + make + make test + make install + +DEPENDENCIES + +This module requires these other modules and libraries: + + blah blah blah + +COPYRIGHT AND LICENCE + +Put the correct copyright and licence information here. + +Copyright (C) 2003 Shinji KONO + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/t/1.t Fri Jan 24 13:35:33 2003 +0900 @@ -0,0 +1,15 @@ +# Before `make install' is performed this script should be runnable with +# `make test'. After `make install' it should work as `perl 1.t' + +######################### + +# change 'tests => 1' to 'tests => last_test_to_print'; + +use Test::More tests => 1; +BEGIN { use_ok('Calcon') }; + +######################### + +# Insert your test code below, the Test::More module is use()ed here so read +# its man page ( perldoc Test::More ) for help writing this test script. +