Initial revision (TODO: Tests, Doc)
[IPC-Semaphore-Concurrency.git] / Makefile.PL
blobcecda4a7bf963b26ad556b2fcb91d43b76d92efc
1 use 5.008008;
2 use ExtUtils::MakeMaker;
3 # See lib/ExtUtils/MakeMaker.pm for details of how to influence
4 # the contents of the Makefile that is written.
5 WriteMakefile(
6     NAME              => 'IPC::Semaphore::Concurrency',
7     VERSION_FROM      => 'lib/IPC/Semaphore/Concurrency.pm', # finds $VERSION
8     PREREQ_PM         => {
9             Carp              => 0,
10             POSIX             => 0,
11             IPC::SysV         => 0,
12             IPC::Semaphore    => 0,
13             Test::More        => 0,
14             Exporter          => 0,
15     },
16     ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
17       (ABSTRACT_FROM  => 'lib/IPC/Semaphore/Concurrency.pm', # retrieve abstract from module
18        AUTHOR         => 'Thomas Guyot-Sionnest <tguyot@gmail.com>') : ()),