Skip Menu |

This queue is for tickets about the JSAN CPAN distribution.

Report information
The Basics
Id: 21528
Status: new
Priority: 0/
Queue: JSAN

People
Owner: Nobody in particular
Requestors: link [...] redbrick.dcu.ie
Cc:
AdminCc:

Bug Information
Severity: Important
Broken in: (no value)
Fixed in: (no value)



Windows support seems lacking. Many windows users will not have tar/cp installed so I added use File::Copy::Recursive qw(rcopy); use Archive::Tar; replaced `tar xzvf $file`; with my $tar = Archive::Tar->new();$tar->read($file);$tar->extract(); and replaced `cp -r lib/* $prefix` with rcopy( "lib/" , $prefix ); Windows is a bit finicky about the mode of filehandles so I added binmode(DIST); after DIST is opened as otherwise the tars seem to get corrupted.