File: Build.PL

package info (click to toggle)
libcrypt-mysql-perl 0.04-7
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 116 kB
  • sloc: perl: 20; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 436 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Crypt::MySQL',
    license             => 'perl',
    dist_author         => 'Tomohiro IKEBE <ikebe@shebang.jp>',
    dist_version_from   => 'lib/Crypt/MySQL.pm',
    requires => {
        'Test::More' => 0,
        'Digest::SHA' => 0,
    },
    add_to_cleanup      => [ 'Crypt-MySQL-*' ],
);

$builder->create_build_script();