forked from ourresearch/cv-parser
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile.PL
More file actions
26 lines (24 loc) · 741 Bytes
/
Makefile.PL
File metadata and controls
26 lines (24 loc) · 741 Bytes
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 => 'app.pl',
VERSION => '1.0',
AUTHOR => 'Marc <marrrcandre@gmail.com>',
EXE_FILES => ['app.pl'],
PREREQ_PM => {'Mojolicious' => '2.0',
'Class::Struct',
'Getopt::Long',
'Getopt::Std',
'File::Basename',
'File::Spec',
'FindBin',
'HTML::Entities',
'IO::File',
'POSIX',
'XML::Parser',
'XML::Twig',
'XML::Writer',
'XML::Writer::String'},
test => {TESTS => 't/*.t'}
);