public
Description:
Homepage:
Clone URL: git://github.com/robertkrimen/text-lorem-more.git
text-lorem-more / Makefile.PL
100644 42 lines (30 sloc) 0.952 kb
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
use inc::Module::Install;
 
name 'Text-Lorem-More';
all_from 'lib/Text/Lorem/More.pm';
 
resources repository => 'http://github.com/robertkrimen/text-lorem-more/tree/master';
 
{
    require ExtUtils::MakeMaker;
    use strict;
    no strict 'refs';
 
    my $libscan = \&{"ExtUtils::MM_Any::libscan"};
    *{"ExtUtils::MM_Any::libscan"} = sub {
        return '' unless $libscan->(@_);
        return '' if $_[1] =~ /\.sw[p-z]$/;
        return $_[1];
    };
}
 
{
    map { my ($pk, $vr) = split m/\s/; build_requires $pk => $vr || 0 } grep { ! /^\s*#/ } split m/\n/, <<_END_;
Test::Most
Test::More
_END_
 
    map { my ($pk, $vr) = split m/\s/; requires $pk => $vr || 0 } grep { ! /^\s*#/ } split m/\n/, <<_END_;
Parse::RecDescent
_END_
}
 
if (-e 'inc/.author') {
    my $all_from = join '/', 'lib', split m/-/, name . '.pm';
    `perldoc -tF $all_from > README` if ! -e 'README' || (stat $all_from)[9] > (stat 'README')[9];
}
 
 
auto_install;
 
WriteAll;