The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# Copyright (c) 2012, cPanel, Inc.
# All rights reserved.
# http://cpanel.net/
#
# This is free software; you can redistribute it and/or modify it under the same
# terms as Perl itself.  See the LICENSE file for further details.

use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'         => 'Filesys::POSIX',
    'VERSION_FROM' => 'lib/Filesys/POSIX.pm',
    'AUTHOR'       => 'Erin Schoenhals <erin@cpanel.net>',
    'LICENSE'      => 'perl',
    'ABSTRACT'     => 'Provides POSIX filesystem semantics in pure Perl',

    'PREREQ_PM' => {
        'Carp'         => 0
    },

    'BUILD_REQUIRES' => {
        'Test::Simple'     => '0.44',
        'Test::Exception'  => '0.26',
        'Test::NoWarnings' => '0.081'
    }
);