File: Makefile.PL

package info (click to toggle)
libexcel-template-perl 0.34-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 608 kB
  • sloc: perl: 3,471; xml: 210; makefile: 2
file content (40 lines) | stat: -rw-r--r-- 1,199 bytes parent folder | download | duplicates (3)
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
40
use inc::Module::Install;

name 'Excel-Template';
perl_version '5.006';
all_from 'lib/Excel/Template.pm';
author q{Rob Kinyon <rob.kinyon@gmail.com>};
license 'perl';
resources(
    repository => {
        url  => 'git://git.shadowcat.co.uk/p5sagit/Excel-Template.git',
        web  => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Excel-Template.git;a=summary',
        type => 'git',
    },
);

test_requires 'File::Path'      => 0;
test_requires 'File::Temp'      => 0;
test_requires 'Test::Deep'      => '0.095';
test_requires 'Test::More'      => '0.47';
test_requires 'Test::Exception' => '0.21';

requires 'Test::More'                       => 0;
requires 'XML::Parser'                      => 0;
requires 'IO::Scalar'                       => 0;
requires 'File::Basename'                   => 0;
requires 'Spreadsheet::WriteExcel'          => '0.42';
requires 'Spreadsheet::WriteExcel::Utility' => 0;

if ($] < 5.008) {
    print "#\n";
    print "# Note: If you want to work with Unicode, you will need to install\n";
    print "# the optional module Unicode::String and set USE_UNICODE to true.\n";
    print "#\n";
    recommends 'Unicode::String';
}

auto_install;

WriteAll;