-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
33 lines (30 loc) · 1017 Bytes
/
Makefile.PL
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
use lib '.';
use strict;
use warnings;
use inc::Module::Install;
# Definition.
abstract 'Common rules for searching DjVu files.';
author 'Michal Josef Spacek <skim@cpan.org>';
author_requires 'English' => 0;
author_requires 'File::Object' => 0.08;
author_requires 'Test::More' => 0;
author_requires 'Test::NoWarnings' => 0;
author_requires 'Test::Pod' => 0;
author_requires 'Test::Pod::Coverage' => 0;
license 'bsd';
name 'File-Find-Rule-DjVu';
perl_version 5.006002;
readme_from 'DjVu.pm';
recursive_author_tests('xt');
requires 'DjVu::Detect' => 0;
requires 'File::Find::Rule' => 0;
resources 'bugtracker' => 'https://github.com/michal-josef-spacek/File-Find-Rule-DjVu/issues';
resources 'homepage' => 'https://github.com/michal-josef-spacek/File-Find-Rule-DjVu';
resources 'repository' => 'git://github.com/michal-josef-spacek/File-Find-Rule-DjVu';
test_requires 'File::Object' => 0.08;
test_requires 'Test::More' => 0;
test_requires 'Test::NoWarnings' => 0;
tests_recursive;
version '0.02';
# Run.
WriteAll();