File: Build.PL

package info (click to toggle)
libmodule-build-withxspp-perl 0.14-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 140 kB
  • sloc: perl: 376; makefile: 2
file content (30 lines) | stat: -r--r--r-- 655 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/perl -w

use strict;
use Module::Build;

my $build = Module::Build->new(
  module_name    => 'Module::Build::WithXSpp',
  license        => 'perl',
  requires       => {
    'ExtUtils::XSpp' => '0.11',
    'ExtUtils::CBuilder' => '0',
    'Module::Build' => '0.26',
    'ExtUtils::Typemaps' => '1.00',
    'ExtUtils::ParseXS' => '2.2205',
    'ExtUtils::CppGuess' => '0.04',
    'Digest::MD5' => '0',
  },
  build_requires => {
    'ExtUtils::CBuilder' => '0',
    'Module::Build' => '0.26',
  },
  configure_requires => {
    'Module::Build' => '0.26',
  },
  test_requires  => {
    'Test::More' => '0',
  },
);

$build->create_build_script;