-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile.PL
53 lines (48 loc) · 1.74 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile
(
NAME => 'Quiki',
AUTHOR => q{Alberto Simoes and Nuno Carvalho <[email protected] and [email protected]>},
VERSION_FROM => 'lib/Quiki.pm',
ABSTRACT_FROM => 'lib/Quiki.pm',
($ExtUtils::MakeMaker::VERSION >= 6.3002
? ('LICENSE'=> 'perl')
: ()),
EXE_FILES => [ 'script/quiki_create' ],
PL_FILES => { 'script/quiki_create.PL' => 'script/quiki_create' },
PREREQ_PM => {
'CGI' => 0,
'CGI::Session' => 0,
'Test::More' => 0,
'URI::Escape' => 0,
'YAML::Any' => 0,
'File::Slurp' => 0,
'File::Path' => '2.08',
'MIME::Base64' => 0,
'DBD::SQLite' => 0,
'Digest::MD5' => 0,
'Pod::Simple' => 0,
'DBI' => 0,
'Regexp::Common' => '2.122',
'Email::Sender' => 0,
'Text::Password::Pronounceable' => '0.28',
'Text::Patch' => 0,
'Test::CheckManifest' => 0,
'Text::Diff' => 0,
'Email::Simple::Creator' => 0,
'Gravatar::URL' => 0,
'HTML::Template::Pro' => '0.90',
'File::MMagic' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Quiki-*' },
);
package MY;
sub processPL {
my $self = shift;
my $make = $self->SUPER::processPL(@_);
$make =~ s{pm_to_blib}{pm_to_blib site.lst script/quiki_create.template};
return $make;
}