File: Makefile.PL

package info (click to toggle)
libio-interactive-perl 0.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, squeeze, wheezy
  • size: 96 kB
  • ctags: 6
  • sloc: perl: 132; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 548 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'IO::Interactive',
    AUTHOR              => 'Damian Conway <DCONWAY@cpan.org>',
    VERSION_FROM        => 'lib/IO/Interactive.pm',
    ABSTRACT_FROM       => 'lib/IO/Interactive.pm',
    LICENSE             => 'perl',
    PREREQ_PM => {
        'Test::More' => '0',
        'version'    => '0',
    	},
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'IO-Interactive-* _build Build' },
);