summaryrefslogtreecommitdiffstats
path: root/Makefile.PL
blob: 325a283686ff5df70eeaac2b0b9ada9bce430ea2 (plain)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Makefile.PL - Makefile generator
#
# Copyright (C) 2016  Libiquity LLC
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

use strict;
use warnings;

use ExtUtils::MakeMaker;

my %mm_args;

sub parse_use
{
	my ($file) = @_;
	my $fh;
	my $line;
	my $prereqs = {};

	open($fh, "<", $file);
	while ($line = readline($fh)) {
		chomp($line);
		if ($line =~ s|^use ([A-Z][A-Za-z0-9_:]*) *.*;$|$1|) {
			if ($line =~ m/^Math::FastPPDecimal/) {
			} else {
				%$prereqs = (%$prereqs, $line => 0);
			}
		}
	}
	close($fh);

	return $prereqs;
}

sub find_prereqs
{
	my ($file_pattern) = @_;
	my $manifest_fh;
	my $file;
	my $prereqs = {};

	open($manifest_fh, "<", "MANIFEST");
	while ($file = readline($manifest_fh)) {
		chomp($file);
		if ($file =~ $file_pattern) {
			$file = parse_use($file);
			%$prereqs = (%$prereqs, %$file);
		}
	}
	close($manifest_fh);

	return $prereqs;
}

%mm_args = (
	"NAME" => "Math::FastPPDecimal",
	"VERSION" => "0.001",
	"AUTHOR" => "Patrick McDermott <patrick.mcdermott\@libiquity.com>",
	"PREREQ_PM" => find_prereqs(qr{^(bin|lib)/}),
);

if (eval {ExtUtils::MakeMaker->VERSION("6.64");}) {
	# 6.64 <= MM
	$mm_args{"TEST_REQUIRES"} = find_prereqs(qr{^t/});
} elsif (eval {ExtUtils::MakeMaker->VERSION("6.5503");}) {
	# 6.5503 <= MM < 6.64
	$mm_args{"BUILD_REQUIRES"} = find_prereqs(qr{^t/});
} else {
	# MM < 6.5503
	$mm_args{"PREREQ_PM"} = {
		$mm_args{"PREREQ_PM"},
		find_prereqs(qr{^t/}),
	};
}

WriteMakefile(
	%mm_args
);