X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=gui%2Fbweb%2FMakefile.PL;h=45833d1c1ade8c71433d0068777abebd28c00138;hb=d199a528614c01b973b03b379730c486eb961d14;hp=d0ad8c5ed9e24360e98f260b54348affff2b7be6;hpb=604ae0d903d76400487732147d04602bd81ecfa5;p=bacula%2Fbacula diff --git a/gui/bweb/Makefile.PL b/gui/bweb/Makefile.PL index d0ad8c5ed9..45833d1c1a 100644 --- a/gui/bweb/Makefile.PL +++ b/gui/bweb/Makefile.PL @@ -1,15 +1,26 @@ +use Test::More tests => 7; + +require_ok('DBI'); +require_ok('GD::Graph'); +require_ok('GD'); +require_ok('HTML::Template'); +require_ok('CGI'); +require_ok('Expect'); +require_ok('Time::ParseDate'); + + use ExtUtils::MakeMaker; WriteMakefile( ABSTRACT => "An other Bacula WEB interface", AUTHOR => "Eric Bollengier ", NAME => 'Bweb', - INST_BIN => "cgi", - VERSION_FROM => "lib/Bweb.pm", + VERSION => "lib/Bweb.pm", + #INST_BIN => "cgi", # setup your cgi installation # debian : /usr/lib/cgi-bin/bweb # redhat/suse : /var/www/cgi-bin/bweb # - INSTALLSITEBIN => "/usr/lib/cgi-bin/bweb", + #INSTALLSITEBIN => "/usr/lib/cgi-bin/bweb", );