The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
	module_name         => 'POSIX::RT::SharedMem',
	license             => 'perl',
	dist_author         => 'Leon Timmermans <leont@cpan.org>',
	dist_version_from   => 'lib/POSIX/RT/SharedMem.pm',
	configure_requires  => {
		'Module::Build' => 0,
	},
	build_requires      => {
		'ExtUtils::CBuilder' => 0,
		'Module::Build' => 0,
		'Test::More'    => 0,
		'Test::Exception' => 0,
	},
	requires => {
		perl            => 5.008,
		'Const::Fast'   => 0,
		Exporter        => 5.57,
		'File::Map'     => 0.19,
	},
	meta_merge => {
		resources       => {
			bugtracker  => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=POSIX::RT::SharedMem',
			repository  => 'http://github.com/Leont/posix-rt-sharedmem/tree',
		},
		keywords        => [ 'memory mapping', 'shared memory' ],
	},
	add_to_cleanup      => [ 'POSIX-RT-SharedMem-*' ],
	create_makefile_pl  => 'small',
	sign                => 1,
);

if ($^O eq 'solaris' or $^O eq 'linux') {
	$builder->extra_linker_flags('-lrt');
}

$builder->create_build_script();