summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authorDamyan Ivanov <dmn@debian.org>2015-07-24 04:59:11 -0700
committerDamyan Ivanov <dmn@debian.org>2015-07-24 04:59:11 -0700
commit54f5e952958474e8a788c161d0700dba8017a5ea (patch)
tree8e9969fa196d3cfeb03b316501d07f988ec0c869 /Build.PL
libgraphics-colornames-perl (2.11-6.1) unstable; urgency=medium
* Non-maintainer upload. * Add build dependency on libmodule-build-perl and replace perl-modules build dependency with perl Closes: #789334 -- FTBFS with perl 5.22 # imported from the archive
Diffstat (limited to 'Build.PL')
-rwxr-xr-xBuild.PL41
1 files changed, 41 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100755
index 0000000..3b1169f
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,41 @@
+use Module::Build;
+
+my $build = Module::Build->new
+ (
+ module_name => 'Graphics::ColorNames',
+ license => 'perl',
+ requires => {
+ 'perl' => '5.006',
+ 'base' => 0,
+# 'AutoLoader' => 0,
+ 'Carp' => 0,
+ 'DirHandle' => 0,
+ 'Exporter' => 0,
+ 'File::Spec' => 0,
+ 'IO::File' => 0,
+ 'Module::Load' => '0.10',
+ 'Module::Loaded' => 0,
+ },
+ recommends => {
+ 'Color::Library' => 0.02,
+ 'Tie::Sub' => 0,
+ 'Test::Pod::Coverage' => 0,
+ 'Test::Pod' => 1.00,
+ 'Test::Portability::Files' => 0,
+ 'Pod::Readme' => 0.09,
+ },
+ build_requires => {
+ 'FileHandle' => 0, # for testing
+ 'Test::Exception' => 0,
+ 'Test::More' => 0,
+ },
+# autosplit => [
+# 'lib/Graphics/ColorNames.pm',
+# ],
+ create_readme => ($Module::Build::VERSION >= 0.2702),
+ create_makefile_pl => 'traditional',
+ dist_author => 'Robert Rothenberg <rrwo at cpan.org>',
+ sign => 0,
+);
+
+$build->create_build_script;