X-Git-Url: http://git.rot13.org/?p=Fuse-DBI;a=blobdiff_plain;f=Makefile.PL;h=7fa2847b40b48945ccea4672c934d4a3774e5b26;hp=5b9ae8fbdcb64e2ddca006b47204cc8412219732;hb=87bd662627da7818da06746034e4d4859ce88802;hpb=8b53b090ace163fc02e100998eda16f4a0c0435b diff --git a/Makefile.PL b/Makefile.PL index 5b9ae8f..7fa2847 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -15,22 +15,27 @@ WriteMakefile( ($] >= 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 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 }