X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FInstallationCheck.pm;h=947be97d107e1e1a5b3dce1412ad0047feb4c684;hb=a581d5bd98f0651b7955adccda1ef73c9e39708d;hp=04435e1f37968d16e343cbf052da3eddd4253098;hpb=44ab47a7c03864316994f247bd01cde652b37e73;p=kivitendo-erp.git diff --git a/SL/InstallationCheck.pm b/SL/InstallationCheck.pm index 04435e1f3..947be97d1 100644 --- a/SL/InstallationCheck.pm +++ b/SL/InstallationCheck.pm @@ -8,6 +8,13 @@ use vars qw(@required_modules @optional_modules @developer_modules); use strict; BEGIN { +# name: the name of the module if you install it with cpan +# version: the minimum version required to run. optional +# url: web path to the author page of the module +# debian: dpkg package name for debianoid distos +# note: (suse) (fedora) (redhat) entries welcome if you +# are willing to maintain them +# dist_name: name of the package in cpan if it differs from name (ex.: LWP != libwww-perl) @required_modules = ( { name => "parent", url => "http://search.cpan.org/~corion/", debian => 'libparent-perl' }, { name => "Archive::Zip", version => '1.16', url => "http://search.cpan.org/~adamk/", debian => 'libarchive-zip-perl' }, @@ -49,8 +56,10 @@ BEGIN { ); @developer_modules = ( + { name => "DBIx::Log4perl", url => "http://search.cpan.org/~mjevans/", }, { name => "Devel::REPL", url => "http://search.cpan.org/~doy/", debian => 'libdevel-repl-perl' }, - { name => "LWP::Simple", url => "http://search.cpan.org/~gaas/", debian => 'libwww-perl' }, + { name => "Log::Log4perl", url => "http://search.cpan.org/~mschilli/", debian => 'liblog-log4perl-perl' }, + { name => "LWP::Simple", url => "http://search.cpan.org/~gaas/", debian => 'libwww-perl', dist_name => 'libwww-perl' }, { name => "Moose::Role", url => "http://search.cpan.org/~doy/", debian => 'libmoose-role-perl' }, { name => "Perl::Tags", url => "http://search.cpan.org/~osfameron/", debian => 'libperl-tags-perl' }, { name => "Test::Deep", url => "http://search.cpan.org/~rjbs/", debian => 'libtest-deep-perl' },