|
Server : Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/1.0.0-fips mod_auth_passthrough/2.1 mod_bwlimited/1.4 System : Linux server.jackjohnson.com 2.6.32-279.5.2.el6.x86_64 #1 SMP Fri Aug 24 01:07:11 UTC 2012 x86_64 User : jackjohn ( 502) PHP Version : 5.3.17 Disable Function : NONE Directory : /installd/perl588installer/CPAN-SQLite-0.196/ |
Upload File : |
use strict;
use warnings;
use Module::Build;
my @exe_files = map {"bin/$_"} qw(cpandb);
my $goners = [qw(cpandb.sql
t/dot-cpan/cpandb.sql
t/dot-cpan/FTPstats.yml
t/dot-cpan/CPAN/MyConfig.pm
t/dot-cpan/cpan_sqlite_log.*
t/dot-cpan/sources/authors/01mailrc.txt.gz
t/dot-cpan/sources/modules/02packages.details.txt.gz
t/dot-cpan/sources/modules/03modlist.data.gz
)];
my $prereqs = {'File::Spec' => 0,
'Archive::Tar' => 1.08,
'IO::Zlib' => 0,
'CPAN::DistnameInfo' => 0,
'DBD::SQLite' => 0,
'File::HomeDir' => 0,
};
my $build = Module::Build->new(
module_name => 'CPAN::SQLite',
license => 'perl',
add_to_cleanup => $goners,
installdirs => 'site',
requires => $prereqs,
script_files => \@exe_files,
dist_version_from => 'lib/CPAN/SQLite.pm',
dist_author => ['Randy Kobes <r.kobes@uwinnipeg.ca>'],
dist_abstract_from => 'lib/CPAN/SQLite.pm',
);
$build->create_build_script;