-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile.PL
More file actions
46 lines (44 loc) · 1.25 KB
/
Makefile.PL
File metadata and controls
46 lines (44 loc) · 1.25 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
#!/usr/bin/perl -w
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => "ROK4::Core",
BUILD_REQUIRES => {
"ExtUtils::MakeMaker" => 0
},
# ack -h "^use [A-Z]" ./ | cut -d' ' -f2 | grep -v -E "ROK4::" | sed -r "s#;##" | sort | uniq | sed -r "s/(.+)/\"\1\" => 0,/"
PREREQ_PM => {
"Net::Amazon::S3" => 0,
"Net::Amazon::S3::Vendor::Generic" => 0,
"Config::INI::Reader" => 0,
"Cwd" => 0,
"Data::Dumper" => 0,
"DBI" => 0,
"Devel::Size" => 0,
"Digest::SHA" => 0,
"Encode" => 0,
"ExtUtils::MakeMaker" => 0,
"File::Basename" => 0,
"File::Copy" => 0,
"File::Map" => 0,
"File::Path" => 0,
"File::Spec" => 0,
"File::Spec::Link" => 0,
"Geo::GDAL" => 0,
"Geo::OGR" => 0,
"Geo::OSR" => 0,
"HTTP::Request" => 0,
"HTTP::Request::Common" => 0,
"HTTP::Response" => 0,
"JSON" => 0,
"JSON::Parse" => 0,
"JSON::Validator" => 0,
"List::Util" => 0,
"Log::Log4perl" => 0,
"LWP::UserAgent" => 0,
"Math::BigFloat" => 0,
"Scalar::Util" => 0,
"Test::More" => 0,
"Tie::File" => 0,
"XML::LibXML" => 0
}
);