File: Makefile.PL

package info (click to toggle)
libstring-truncate-perl 1.100570-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 124 kB
  • ctags: 10
  • sloc: perl: 277; makefile: 2
file content (39 lines) | stat: -rw-r--r-- 1,252 bytes parent folder | download
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
27
28
29
30
31
32
33
34
35
36
37
38
39

use strict;
use warnings;



use ExtUtils::MakeMaker 6.11;



my %WriteMakefileArgs = (
                       'test' => {
                                   'TESTS' => 't/*.t'
                                 },
                       'NAME' => 'String::Truncate',
                       'DISTNAME' => 'String-Truncate',
                       'AUTHOR' => 'Ricardo Signes <rjbs@cpan.org>',
                       'ABSTRACT' => 'a module for when strings are too long to be displayed in...',
                       'EXE_FILES' => [],
                       'VERSION' => '1.100570',
                       'LICENSE' => 'perl',
                       'PREREQ_PM' => {
                                        'Test::More' => '0.88',
                                        'Sub::Exporter::Util' => 0,
                                        'Sub::Install' => '0.03',
                                        'ExtUtils::MakeMaker' => '6.11',
                                        'Sub::Exporter' => '0.953',
                                        'Carp' => 0
                                      }
                     );


delete $WriteMakefileArgs{LICENSE}
  unless eval { ExtUtils::MakeMaker->VERSION(6.31) };

WriteMakefile(%WriteMakefileArgs);