1use 5.006;
2use ExtUtils::MakeMaker;
3# See lib/ExtUtils/MakeMaker.pm for details of how to influence
4# the contents of the Makefile that is written.
5# $Id: Makefile.PL 86 2006-01-02 09:13:53Z roam $
6WriteMakefile(
7    NAME              => 'Audio::Scrobbler',
8    VERSION_FROM      => 'lib/Audio/Scrobbler.pm', # finds $VERSION
9    PREREQ_PM         => {
10				'Config::IniFiles'	=> 2,
11				'Digest::MD5'		=> 2,
12				'LWP'			=> 5,
13			},
14    EXE_FILES         => [ qw{ bin/scrobbler-helper } ],
15    ABSTRACT_FROM     => 'lib/Audio/Scrobbler.pm', # retrieve abstract from module
16    AUTHOR            => 'Peter Pentchev <roam@ringlet.net>',
17);
18