X-Git-Url: http://git.rot13.org/?p=Fuse-DBI;a=blobdiff_plain;f=Makefile.PL;h=d14f2c60064b42790ab6950a4e2fe5e4a1c4b718;hp=03a3b1f8f25632a07520ce682e62735976c4eb5b;hb=76d1c7a95dbe96fbfb5eff94f779c70879443f0c;hpb=1e14f6868c1078f8867e1ecdbcc61b3f99221dd0 diff --git a/Makefile.PL b/Makefile.PL index 03a3b1f..d14f2c6 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -10,24 +10,30 @@ WriteMakefile( '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: + svn update && svn -v log > Changes + +webgui: all + sudo umount /mnt2 || echo -n + ./examples/webgui.pl /data/WebGUI/etc/WebGUI.conf /mnt2 MAKE_MORE }