Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
cpan /
Pod-Perldoc /
Delete
Unzip
Name
Size
Permission
Date
Action
blib
[ DIR ]
drwxr-xr-x
2016-10-10 17:37
corpus
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
lib
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
t
[ DIR ]
drwxr-xr-x
2015-02-14 16:55
Makefile
27.12
KB
-rw-r--r--
2016-10-10 17:37
Makefile.PL
2.07
KB
-r--r--r--
2014-12-27 11:48
perldoc.pod
8.69
KB
-r--r--r--
2014-12-27 11:48
pm_to_blib
0
B
-rw-r--r--
2016-10-10 17:37
Save
Rename
use 5.006; use strict; use warnings; use ExtUtils::MakeMaker; my $EUMM_VERSION = $ExtUtils::MakeMaker::VERSION; WriteMakefile( 'NAME' => 'Pod::Perldoc', 'VERSION_FROM' => 'lib/Pod/Perldoc.pm', 'AUTHOR' => 'Mark Allen <mallen@cpan.org>', # maintainer 'ABSTRACT_FROM' => 'lib/Pod/Perldoc.pm', 'PREREQ_PM' => { # Are there any hard dependencies not covered here? 'Config' => '0', 'Encode' => '0', 'Fcntl' => '0', 'File::Spec::Functions' => '0', 'File::Temp' => '0.22', 'IO::Select' => '0', 'parent' => '0', 'Pod::Man' => '2.18', 'Pod::Simple::RTF' => '3.16', 'Pod::Simple::XMLOutStream' => '3.16', 'Pod::Text' => '0', 'strict' => '0', 'Symbol' => '0', 'Test::More' => '0', 'Text::ParseWords' => '0', 'warnings' => '0', }, ($ENV{PERL_CORE} ? () : ('EXE_FILES' => [qw( perldoc )])), 'META_MERGE' => { no_index => { directory => 'corpus', }, resources => { repository => 'https://github.com/mrallen1/Pod-Perldoc.git', }, }, 'MAN1PODS' => { 'perldoc.pod' => 'blib/man1/perldoc.1' }, ($^V >= 5.008001 && $^V < 5.012 ? ( 'INSTALLDIRS' => 'perl' ) : ()), ( $EUMM_VERSION > 6.31 ? ( 'LICENSE' => 'perl', ) : () ), test => {TESTS => 't/*.t t/*/*.t'} ); package MY; sub libscan { # Determine things that should *not* be installed my($self, $path) = @_; return '' if $path =~ m/~/; $path; } sub init_dirscan { my($self) = shift; $self->SUPER::init_dirscan; # Need to force perldoc.pod to install at the top level of the lib dir: $self->{PM}{'perldoc.pod'} = $self->catfile($self->{INST_LIB}, 'perldoc.pod'); return; } __END__