File: Build.PL

package info (click to toggle)
libconvert-ytext-perl 0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 128 kB
  • sloc: perl: 322; makefile: 11
file content (23 lines) | stat: -rw-r--r-- 453 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use strict;
use warnings;

use Module::Build;

my $build = Module::Build->new
  (
   module_name => 'Convert::YText',
   dist_author => [ 'David Bremner <ddb@cpan.org>'],
   (sign => 1),
   requires => {
		'Test::More'=>0,
               },
   license => 'unknown',
   create_readme => 0,
   meta_merge => { 
		  resources => 
		  { homepage =>
		    'http://pivot.cs.unb.ca/git/?p=convert-ytext.git;a=summary' }
		 }
  );

$build->create_build_script;