-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
29 lines (29 loc) · 1.06 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
use 5.008008;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'IPC::Semaphore::Concurrency',
ABSTRACT_FROM => 'lib/IPC/Semaphore/Concurrency.pm', # retrieve abstract from module
AUTHOR => 'Thomas Guyot-Sionnest <tguyot@gmail.com>',
VERSION_FROM => 'lib/IPC/Semaphore/Concurrency.pm', # finds $VERSION
LICENSE => 'perl',
PREREQ_PM => {
'Carp' => 0,
'POSIX' => 0,
'IPC::SysV' => 0,
'IPC::Semaphore' => 0,
'Test::More' => 0,
'Exporter' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/dermoth/IPC-Semaphore-Concurrency.git',
web => 'https://github.com/dermoth/IPC-Semaphore-Concurrency',
},
},
},
);