File: Makefile.PL

package info (click to toggle)
libipc-system-simple-perl 1.21-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze, wheezy
  • size: 288 kB
  • ctags: 135
  • sloc: perl: 1,985; makefile: 4
file content (26 lines) | stat: -rw-r--r-- 798 bytes parent folder | download
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
#!/usr/bin/perl -w
use strict;
use 5.006;
use constant WINDOWS => ($^O eq 'MSWin32');
use inc::Module::Install;

name(		'IPC-System-Simple');
all_from(	'lib/IPC/System/Simple.pm');

requires(	'Config'	=> 0);
requires(	'List::Util'	=> 0);
requires(	'Scalar::Util'	=> 0);
requires(	'Win32::Process'=> 0) if WINDOWS;
requires(	'File::Spec'	=> 0) if WINDOWS;

test_requires(	'Test'		=> 0);
test_requires(	'Test::More'	=> 0);
test_requires(	'File::Basename'=> 0);

resources(	repository	=> "http://github.com/pfenwick/ipc-system-simple/tree/master");
resources(	bugtracker	=> "http://rt.cpan.org/NoAuth/Bugs.html?Dist=IPC-System-Simple");
resources(	Forum		=> "http://www.cpanforum.com/dist/IPC-System-Simple");
resources(	Blog		=> "http://pjf.id.au/blog/toc.html?tag=ipc-system-simple");

WriteAll();