Subject: | [PATCH] Undeclared build dependency: Module::Build::Kwalitee |
As of version 0.4.6, Module::Build::Kwalitee is used to build the
distribution, but this is not mentioned in META.yml. Thus building
fails where this prerequisite is not already installed.
A simple fix would be to just use Module::Build instead (patch included).
-Martin
Subject: | Games-AlphaBeta-0.4.6-build.patch |
diff -ru Games-AlphaBeta-0.4.6.orig/Build.PL Games-AlphaBeta-0.4.6/Build.PL
--- Games-AlphaBeta-0.4.6.orig/Build.PL 2005-10-01 21:19:38.000000000 +0200
+++ Games-AlphaBeta-0.4.6/Build.PL 2009-09-02 15:20:59.000000000 +0200
@@ -1,8 +1,8 @@
use 5.006001;
use lib 'mbk';
-use Module::Build::Kwalitee;
+use Module::Build;
-Module::Build::Kwalitee->new(
+Module::Build->new(
module_name => 'Games::AlphaBeta',
license => 'perl',
build_requires => {