-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile.PL
More file actions
66 lines (61 loc) · 2.43 KB
/
Makefile.PL
File metadata and controls
66 lines (61 loc) · 2.43 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
use 5.020;
use strict;
use warnings;
use ExtUtils::MakeMaker;
my %WriteMakefileArgs = (
NAME => 'Claude::Agent::Code::Refactor',
AUTHOR => q{LNATION <email@lnation.org>},
VERSION_FROM => 'lib/Claude/Agent/Code/Refactor.pm',
ABSTRACT_FROM => 'lib/Claude/Agent/Code/Refactor.pm',
LICENSE => 'artistic_2',
MIN_PERL_VERSION => '5.020',
macro => { TARFLAGS => "--format=ustar -c -v -f" },
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
TEST_REQUIRES => {
'Test::More' => '0.98',
'Test::Exception' => '0.43',
},
PREREQ_PM => {
'Claude::Agent' => '0.09',
'Claude::Agent::Code::Review' => '0.01',
'Marlin' => '0.007000',
'Types::Common' => '2.0',
'Path::Tiny' => '0.100',
'IO::Async' => '0.80',
'Future::AsyncAwait' => '0.60',
'Time::HiRes' => '0',
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/ThisUsedToBeAnEmail/Claude-Agent.git',
web => 'https://github.com/ThisUsedToBeAnEmail/Claude-Agent',
},
bugtracker => {
web => 'https://github.com/ThisUsedToBeAnEmail/Claude-Agent/issues',
},
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Claude-Agent-Code-Refactor-*' },
);
# Compatibility with old versions of ExtUtils::MakeMaker
unless (eval { ExtUtils::MakeMaker->VERSION('6.64'); 1 }) {
my $test_requires = delete $WriteMakefileArgs{TEST_REQUIRES} || {};
@{$WriteMakefileArgs{PREREQ_PM}}{keys %$test_requires} = values %$test_requires;
}
unless (eval { ExtUtils::MakeMaker->VERSION('6.55_03'); 1 }) {
my $build_requires = delete $WriteMakefileArgs{BUILD_REQUIRES} || {};
@{$WriteMakefileArgs{PREREQ_PM}}{keys %$build_requires} = values %$build_requires;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION('6.52'); 1 };
delete $WriteMakefileArgs{MIN_PERL_VERSION}
unless eval { ExtUtils::MakeMaker->VERSION('6.48'); 1 };
delete $WriteMakefileArgs{LICENSE}
unless eval { ExtUtils::MakeMaker->VERSION('6.31'); 1 };
WriteMakefile(%WriteMakefileArgs);