X-Git-Url: https://ruderich.org/simon/gitweb/?p=blhc%2Fblhc.git;a=blobdiff_plain;f=Build.PL;h=02796f57cdeb408026d0bc8070ff0b5e1286f291;hp=f229a0fabb72af2c2cd5a2f223e6d259f22c3002;hb=11bb7123847f86127e7f3d551761d2532db233e3;hpb=0df26c1c2b30a44adc06f9c93650a6f2e31475c0 diff --git a/Build.PL b/Build.PL index f229a0f..02796f5 100644 --- a/Build.PL +++ b/Build.PL @@ -1,6 +1,6 @@ #!/usr/bin/perl -# Copyright (C) 2012 Simon Ruderich +# Copyright (C) 2012-2019 Simon Ruderich # # 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 @@ -28,10 +28,17 @@ my $build = Module::Build->new( dist_version_from => 'bin/blhc', license => 'gpl', # gpl_3 is spec 2, not used by Module::Build requires => { + # Debian specific (for now). + 'Dpkg::Arch' => 0, + 'Dpkg::Version' => 0, # Bundled with perl. 'Getopt::Long' => 0, 'Pod::Usage' => 0, - 'Term::ANSIColor' => 0, + 'Term::ANSIColor' => '2.01', + 'Text::ParseWords' => 0, + }, + configure_requires => { + 'Module::Build' => 0, }, ); $build->create_build_script;