--- trunk/Makefile.PL 2004/08/29 18:51:29 11 +++ trunk/Makefile.PL 2007/01/22 18:01:14 67 @@ -6,28 +6,36 @@ NAME => 'Fuse::DBI', VERSION_FROM => 'DBI.pm', # finds $VERSION PREREQ_PM => { - POSIX => 0, - Fuse => 0, - DBI => 0, - Carp => 0, + 'POSIX' => 0, + 'Fuse' => 0, + 'DBI' => 0, + 'Carp' => 0, + 'File::Find' => 0, }, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'DBI.pm', # retrieve abstract from module AUTHOR => 'Dobrica Pavlinusic ') : ()), + depend => { + dist => 'changelog', + }, ); sub MY::postamble { return <<'MAKE_MORE'; -mount: - mkdir -f /tmp/db - sudo modprobe fuse - sudo umount /tmp/db || exit 0 - ./fuse_dbi.pl /tmp/db - 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 + +changelog: + svk update && svk -v log > Changes + +webgui: all + sudo umount /mnt2 || echo -n + ./examples/webgui.pl /data/WebGUI/etc/WebGUI.conf /mnt2 + +cpan: changelog disttest MAKE_MORE }