File: Makefile.PL

package info (click to toggle)
libanyevent-irc-perl 0.97-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 208 kB
  • ctags: 97
  • sloc: perl: 1,592; makefile: 2
file content (26 lines) | stat: -rw-r--r-- 814 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'AnyEvent::IRC',
    AUTHOR              => 'Robin Redeker <elmex@ta-sa.org>',
    LICENSE             => 'perl',
    VERSION_FROM        => 'lib/AnyEvent/IRC.pm',
    ABSTRACT_FROM       => 'lib/AnyEvent/IRC.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More'    => 0,
        'AnyEvent'      => '5.111',
        'Object::Event' => '0.6',
        'common::sense' => 0,
        'Scalar::Util'  => 0,
        'Encode'        => 0,
    },
    dist                => {
       COMPRESS => 'gzip -9f',
       SUFFIX => 'gz',
       PREOP => 'pod2text lib/AnyEvent/IRC.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
    },
    clean               => { FILES => 'AnyEvent-IRC-*' },
);