#!/usr/bin/perl # $Id: Makefile.PL 8 2009-07-27 04:39:24Z rcaputo $ use ExtUtils::MakeMaker; ## Touch CHANGES so it exists. open(CHANGES, ">>CHANGES") and close CHANGES; WriteMakefile( NAME => 'CDDB', AUTHOR => 'Rocco Caputo ', ABSTRACT => 'High-level interface to CDDB and freedb servers.', LICENSE => 'perl', VERSION_FROM => 'lib/CDDB.pm', PREREQ_PM => { 'Test::More' => 0, }, META_ADD => { resources => { license => 'http://dev.perl.org/licenses/', repository => 'http://thirdlobe.com/svn/cddb/trunk' }, }, dist => { COMPRESS => 'gzip -9', SUFFIX => 'gz', PREOP => ( 'svn-log.perl | tee ./$(DISTNAME)-$(VERSION)/CHANGES > ./CHANGES' ), }, );