File: Build.PL

package info (click to toggle)
liblinux-epoll-perl 0.019-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 684 kB
  • sloc: perl: 100; makefile: 3
file content (33 lines) | stat: -rw-r--r-- 592 bytes parent folder | download | duplicates (4)
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
30
31
32
33
use 5.006;
use strict;
use warnings;
use Module::Build;

if ($^O ne 'linux') {
	die "No support for OS\n";
}

my $builder = Module::Build->new(
	module_name => 'Linux::Epoll',
	  'build_requires' => {
    'Module::Build' => '0.28',
    'POSIX' => '0',
    'Scalar::Util' => '0',
    'Socket' => '0',
    'Test::More' => '0',
    'Time::HiRes' => '0'
  },
  'configure_requires' => {
    'Module::Build' => '0.28'
  },
  'requires' => {
    'IO::Handle' => '0',
    'parent' => '0',
    'perl' => '5.010',
    'strict' => '0',
    'warnings' => '0'
  },
	
);

$builder->create_build_script();