File: Build.PL

package info (click to toggle)
libmodule-build-xsutil-perl 0.19-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 192 kB
  • sloc: perl: 338; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 455 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use strict;
use warnings;
use Module::Build::XSUtil;

my $builder = Module::Build::XSUtil->new(
    name                 => 'Foo',
    module_name          => 'Foo',
    test_files           => 't/',
    license              => 'perl',
    dynamic_config       => 0,

    configure_requires  => { 'Module::Build::XSUtil' => 0, },
    generate_ppport_h   => 'lib/ppport.h',
    generate_xshelper_h => 'lib/xshelper.h',
);

$builder->create_build_script();