Debian に AceDBをいれようとしてみる

dh-make-perl --cpan Ace --build

だと

======================================================================
Could not find the dependencies for the requested module
Module::Depends::Intrusive reports: /tmp/AcePerl-1.91-WqWJHY/Makefile.PL did not return a true value at /usr/share/perl5/Module/Depends/Intrusive.pm line 76.

Generated error: Error: /tmp/AcePerl-1.91-WqWJHY/Makefile.PL did not return a true value at /usr/share/perl5/Module/Depends/Intrusive.pm line 76.

Please check if your module depends on Module::Install
for its build process - Automatically finding its
dependencies is unsupported, please specify them manually
using the 'depends' option.
======================================================================

こんなエラーがでてしまった。

ただ

perl Makefile.PL
make
make test

は、いけたので、よくよくみてみると、returnがtrueじゃないみたいなことだったので
Makefile.PL
をのぞいてみた

55行目が

exit 0;

だったので、ここをコメントアウトしてみて

dh-make-perl AcePerlのディレクトリ --build

としたら
無事に完成しました。

動くかはわからないけど、ないと先にすすめないよりはいいかな??