Apache-LangPrefCookie

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN


use 5.006;
use ExtUtils::MakeMaker;
use Apache::TestMM qw(test clean);

# prerequisites
my %require = (
    "Apache::Test"    => "",    # any version will do
    'Apache::Request' => "",
    'Apache::Cookie'  => "",
);

my @scripts = qw(t/TEST);

# accept the configs from command line
Apache::TestMM::filter_args();
Apache::TestMM::generate_script('t/TEST');

WriteMakefile(
    NAME         => 'Apache::LangPrefCookie',
    VERSION_FROM => 'lib/Apache/LangPrefCookie.pm',    # finds $VERSION
    PREREQ_PM    => \%require,
    ABSTRACT_FROM =>
      'lib/Apache/LangPrefCookie.pm',    # retrieve abstract from module
    AUTHOR => 'Hansjoerg Pehofer <hansjoerg.pehofer@uibk.ac.at>',
    clean  => { FILES => "@{ clean_files() }", },
);

sub clean_files {
    return [@scripts];
}



( run in 0.566 second using v1.01-cache-2.11-cpan-39bf76dae61 )