# $Id: Makefile.PL,v 1.13.2.1 2003/09/05 12:17:17 sherzodr Exp $ use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( NAME => 'Class::PObject', VERSION_FROM=> 'PObject.pm', PREREQ_PM => { 'Data::Dumper' => 0, 'Storable' => 0, 'IO::Dir' => 0, 'Test::More' => 0, 'Log::Agent' => 0 }, ABSTRACT => "Simple framework for programming persistent objects", AUTHOR => "Sherzod B. Ruzmetov " ); package MY; sub postamble { return <<'TAG'; realclean:: $(RM_RF) data $(RM_RF) core.* TAG } sub libscan { my (undef, $path) = @_; return '' if $path =~ m/CVS/; return $path }