The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#! perl

use strict;
use warnings;
use ExtUtils::MakeMaker;
use Config;

my @scripts = qw( taskflow );
my $usrbin = "/usr/bin";
my $installscript = $Config{installscript};

print STDERR <<EOF unless $installscript eq $usrbin;

WARNING: This Makefile will install user accessible scripts.
The location for these scripts is $installscript.
You may consider to pass INSTALLSCRIPT=$usrbin (or some other
convenient location) to "make install".

EOF

WriteMakefile(
    NAME                => 'App::Taskflow',
    AUTHOR              => q{Farhad Fouladi <farhad@cpan.org>},
    VERSION_FROM        => 'lib/App/Taskflow.pm',
    ABSTRACT_FROM       => 'lib/App/Taskflow.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    EXE_FILES		=> [ map { "bin/$_" } @scripts ],
    PREREQ_PM => {
        'Test::More'   => 0,
        'Log::Handler' => 0,
        'DBM::Deep'    => 0,
        'DB_File'      => 0,
        'Getopt::Lucid'=> 0
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'App-Taskflow-*' },
);