File: Build.PL

package info (click to toggle)
libio-stty-perl 0.03-1.1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 160 kB
  • ctags: 6
  • sloc: perl: 275; makefile: 5
file content (29 lines) | stat: -rw-r--r-- 864 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
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'IO::Stty',
    author              => 'Austin Schutz <auschutz@cpan.org>',
    dist_version_from   => 'lib/IO/Stty.pm',
    abstract_from       => 'lib/IO/Stty.pm',
    dist_abstract       => 'lib/IO/Stty.pm',
    license             => 'perl',
    build_requires      => {
	'Test::More'    => '0', 
	'Module::Build' => '0.35',
    },
    add_to_cleanup      => ['IO-Stty-*' ],
    script_files   => ['scripts/stty.pl'],
    meta_merge     => {
      resources => {
        homepage => 'http://github.com/toddr/IO-Stty',
#        bugtracker => 'https://rt.cpan.org/NoAuth/Bugs.html?Dist=IO-Stty',
        MailingList => 'mailto:toddr@cpan.org',
        repository  => 'git://github.com/toddr/IO-Stty.git',
      }
    }
);

$builder->create_build_script;