The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl
# ==============================================================================
#
#   Eidolon
#   Copyright (c) 2009, Atma 7
#   ---
#   Makefile.PL - makefile maker
#
# ==============================================================================  

use 5.008008;
use ExtUtils::MakeMaker;
use warnings;
use strict;

WriteMakefile
(
    "NAME"          => "Eidolon::Driver::User::Basic",
    "ABSTRACT_FROM" => "lib/Eidolon/Driver/User/Basic.pm",
    "VERSION_FROM"  => "lib/Eidolon/Driver/User/Basic.pm", 
    "AUTHOR"        => "Anton Belousov <abel\@cpan.org>",

    "PREREQ_PM"     => 
    {
        "Eidolon" => "0.02"
    }, 

    "test"          => { "TESTS" => "t/*.t" },
);