Skip Menu |

This queue is for tickets about the Algorithm-C3 CPAN distribution.

Report information
The Basics
Id: 50816
Status: resolved
Priority: 0/
Queue: Algorithm-C3

People
Owner: Nobody in particular
Requestors: xenoterracide@gmail.com (no email address)
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.08
Fixed in: 0.09



Subject: README doesn't contain current install instructions
README packaged with C3 has this however no Makefile.PL is distributed with it. INSTALLATION To install this module type the following: perl Makefile.PL make make test make install
yes no Makefile.PL but Build.PL and for correct README: INSTALLATION To install this module type the following: perl Build.PL perl Build perl Build test perl Build install
or use this Makefile.PL with follow content: use ExtUtils::MakeMaker; WriteMakefile( 'NAME' => 'Algorithm::C3', 'VERSION_FROM' => 'lib/Algorithm/C3.pm', 'PREREQ_PM' => {Carp => 0.01, Test::More => 0.47}, ($] >= 5.005 ? ( ABSTRACT_FROM => 'lib/Algorithm/C3.pm', AUTHOR => 'Florian Ragwitz <rafl@debian.org>', ) : ()), );
The readme now has documentation generated based off the moodule's pod, so it's no longer inaccurate.