Typos & rewrap
[IPC-Semaphore-Concurrency.git] / Makefile.PL
blob620654b3a5e46c8d43a6e82ec1a281a1d20b15e3
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     ABSTRACT_FROM     => 'lib/IPC/Semaphore/Concurrency.pm', # retrieve abstract from module
8     AUTHOR            => 'Thomas Guyot-Sionnest <tguyot@gmail.com>',
9     VERSION_FROM      => 'lib/IPC/Semaphore/Concurrency.pm', # finds $VERSION
10     LICENSE           => 'perl',
11     PREREQ_PM         => {
12       'Carp'            => 0,
13       'POSIX'           => 0,
14       'IPC::SysV'       => 0,
15       'IPC::Semaphore'  => 0,
16       'Test::More'      => 0,
17       'Exporter'        => 0,
18     },
19     META_MERGE        => {
20       'meta-spec'       => { version => 2 },
21       resources         => {
22         repository        => {
23           type              => 'git',
24           url               => 'https://github.com/dermoth/IPC-Semaphore-Concurrency.git',
25           web               => 'https://github.com/dermoth/IPC-Semaphore-Concurrency',
26         },
27       },
28     },