#!/usr/bin/perl # $Id: Build.PL,v 1.10 2004/04/17 17:10:57 sungo Exp $ use strict; use Module::Build; # Accomodate with CPAN autoinstall. See # http://www.mail-archive.com/module-authors@perl.org/msg00162.html shift @ARGV if @ARGV and $ARGV[0] eq 'Build'; my $build = Module::Build->new( dist_name => 'POE', dist_version_from => 'lib/POE.pm', dist_author => 'Rocco Caputo ', license => 'perl', requires => { 'Filter::Util::Call' => 1.04, 'Test::More' => 0, }, recommends => { 'Time::HiRes' => 0, }, ); $build->create_build_script;