use Data::Config from WebGUI installation to read configuration file and
[Fuse-DBI] / Makefile.PL
index 21fa72f..3985582 100644 (file)
@@ -6,11 +6,13 @@ WriteMakefile(
     NAME              => 'Fuse::DBI',
     VERSION_FROM      => 'DBI.pm', # finds $VERSION
     PREREQ_PM         => {
-       Fuse => 0,
-       POSIX => 0,
+       'POSIX' => 0,
+       'Fuse' => 0,
+       'DBI' => 0,
+       'Carp' => 0,
     }, # e.g., Module::Name => 1.1
     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
-      (ABSTRACT_FROM  => 'lib/Fuse/DBI.pm', # retrieve abstract from module
+      (ABSTRACT_FROM  => 'DBI.pm', # retrieve abstract from module
        AUTHOR         => 'Dobrica Pavlinusic <dpavlin@rot13.org>') : ()),
 );
 
@@ -25,7 +27,9 @@ mount:
        sudo umount /tmp/db
 
 html: DBI.pm
-       pod2html DBI.pm > DBI.html && rm pod2htm?.tmp
+       pod2html DBI.pm > DBI.html
+       pod2html examples/webgui.pl > WebGUI.html
+       rm pod2htm?.tmp
 
 MAKE_MORE
 }