File: Build.PL

package info (click to toggle)
libunicode-stringprep-perl 1.105%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 272 kB
  • sloc: perl: 3,557; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 740 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
34
35
#!/usr/bin/perl

use 5.006;
use strict;

use Module::Build;

my $b = Module::Build->new(
	'module_name'	=> 'Unicode::Stringprep',
	'license'	=> 'perl',
	'dist_author'	=> 'Claus Färber <CFAERBER@cpan.org>',
	'dist_abstract' => 'Preparation of Internationalized Strings (RFC 3454)',

	'sign'		=> 1,
	'create_license' => 1,
	'create_makefile_pl' => 'traditional',

	'requires'	=> {
		'Unicode::Normalize' => 1,
		'perl' => 5.008003,
	},
	'build_requires' => {
		'Test::NoWarnings' => 0,
		'Test::More' => 0,
	},
	'no_index' => {
		'directory' => ['eg'],
	},
	'resources' => {
		'homepage' => 'http://search.cpan.org/dist/Unicode-Stringprep',
		'repository' => 'http://github.com/cfaerber/Unicode-Stringprep',
	},
);

$b->create_build_script;