-
Notifications
You must be signed in to change notification settings - Fork 2
/
Build.PL
64 lines (62 loc) · 2.04 KB
/
Build.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
54
55
56
57
58
59
60
61
62
63
64
use strict;
use warnings;
use Module::Build;
my $class = Module::Build->subclass(
class => 'My::Builder',
code => q{
sub ACTION_tarball_name { print shift->dist_dir . ".tar.gz\n" }
sub ACTION_latest_changes {
my $self = shift;
(my $dv = $self->dist_version) =~ s/^v//;
open my $in, '<:raw', 'Changes' or die "Cannot open Changes: $!\n";
open my $out, '>:raw', 'latest_changes.md' or die "Cannot open latest_changes.md: $!\n";
while (<$in>) { last if /^\Q$dv\E\b/ }
print {$out} "Changes for v$dv\n";
while (<$in>) {
last if /^\s*$/;
chomp;
if (s/^\s+-/- /) {
print {$out} "\n";
} else {
s/^\s+/ /;
}
print {$out} $_;
}
$self->add_to_cleanup('latest_changes.md');
}
},
);
$class->new(
module_name => 'PGXN::API::Searcher',
license => 'perl',
create_makefile_pl => 'traditional',
configure_requires => { 'Module::Build' => '0.4209' },
test_requires => {
'File::Path' => '2.08',
'File::Spec::Functions' => 0,
'Test::More' => '0.96',
},
requires => {
'Carp' => 0,
'File::Spec' => 0,
'Lucy' => '0.6.2',
'perl' => '5.12.0',
},
meta_merge => {
'meta-spec' => { version => 2 },
resources => {
homepage => 'https://metacpan.org/dist/PGXN-API-Searcher',
bugtracker => 'https://github.com/pgxn/pgxn-api-searcher/issues/',
repository => 'https://github.com/pgxn/pgxn-api-searcher/',
},
prereqs => {
develop => {
requires => {
'Test::Pod' => '1.41',
'Test::Pod::Coverage' => '1.06',
'Test::Spelling' => '0.25',
},
},
},
},
)->create_build_script;