File: Makefile.PL

package info (click to toggle)
libwiki-toolkit-formatter-usemod-perl 0.24-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 172 kB
  • ctags: 15
  • sloc: perl: 254; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 624 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ExtUtils::MakeMaker;

WriteMakefile(
    (MM->can('signature_target') ? (SIGN => 1) : ()),
    NAME         => "Wiki::Toolkit::Formatter::UseMod",
    VERSION_FROM => "lib/Wiki/Toolkit/Formatter/UseMod.pm",
    PREREQ_PM    => { 'Text::WikiFormat'     => '0.71', # 0.7 buggy
                      'HTML::PullParser'     => 0,
                      'Test::More'           => 0,
                      'URI::Escape'          => 0,
                      'URI::Find::Delimited' => '0.02', # earlier buggy
                      'Wiki::Toolkit'        => 0,
                    },
    clean        => { FILES => "t/*.db" },
);