/usr/local/CPAN/RPM-Tools/Makefile.PL


# Makefile.PL

use ExtUtils::MakeMaker;

print "No modules required...\n";

die "No rpm command available!"
    unless qx{rpm --version};

WriteMakefile(
    'NAME'          => 'RPM-Tools',
    'VERSION_FROM'  => 'RPM/Make.pm',
    'PMLIBDIRS' => ['RPM'],
    'DISTNAME'      => 'RPM-Tools',
    'dist'          => { COMPRESS => 'gzip --best', SUFFIX => 'gz' },
    ($] >= 5.005 ? (
      'AUTHOR'        => 'Scott Harrison <sharrison@users.sourceforge.net>',
    ) : () ),
    'clean'		=> {
	'FILES'	=> 'TempBuildLoc/ Test*.rpm',
    },
);