File: Makefile.PL

package info (click to toggle)
libtest-portability-files-perl 0.05-2
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 132 kB
  • ctags: 5
  • sloc: perl: 159; makefile: 2
file content (19 lines) | stat: -rw-r--r-- 655 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use strict;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Test::Portability::Files',
    AUTHOR              => 'Sbastien Aperghis-Tramoni <sebastien@aperghis.net>',
    VERSION_FROM        => 'lib/Test/Portability/Files.pm',
    ABSTRACT_FROM       => 'lib/Test/Portability/Files.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'File::Basename' => 0, 
        'File::Find' => 0, 
        'File::Spec' => 0, 
        'Test::Builder' => 0,
        'Test::More' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Test-Portability-Files-*' },
);