File: Build.PL

package info (click to toggle)
ciphersaber 1.01-2.2
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 144 kB
  • sloc: perl: 313; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 602 bytes parent folder | download | duplicates (2)
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 $builder = Module::Build->new(
    module_name         => 'Crypt::CipherSaber',
    license             => 'perl',
    dist_author         => 'chromatic <chromatic@cpan.org>',
    dist_version_from   => 'lib/Crypt/CipherSaber.pm',
    requires            =>
    {
        'Scalar::Util'  => '1.004002',
    },
    build_requires      =>
    {
        'Test::Simple'  => '0.60',
        'Test::Warn'    => '0.30',
    },
    add_to_cleanup      => [ 'Crypt-CipherSaber-*' ],
    create_makefile_pl  => 'traditional',
);

$builder->create_build_script();