File: Build.PL

package info (click to toggle)
libauthen-oath-perl 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, wheezy
  • size: 132 kB
  • ctags: 8
  • sloc: perl: 142; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 1,059 bytes parent folder | download
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
#!/usr/bin/perl
################################################################################
# $Id: Build.PL 3 2010-05-25 16:04:32Z v89326 $
# $URL: file:///S:/svn/Authen-OATH/trunk/Build.PL $
################################################################################
#
# Title:   Build.PL
# Author:  Kurt Kincaid
# VERSION: 1.0.0
#
################################################################################

use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name       => 'Authen::OATH',
    license           => 'perl',
    dist_author       => q{Kurt Kincaid <kurt.kincaid@gmail.com>},
    dist_version_from => 'lib/Authen/OATH.pm',
    build_requires    => {
        'Test::More'   => 0,
        'Test::Simple' => 0,
        'Moose'        => 0,
        'Math::BigInt' => 0,
        'Digest::HMAC' => 0,
        'Digest::SHA' => 0,
    },
    add_to_cleanup     => [ 'Authen-OATH-*' ],
    create_makefile_pl => 'traditional',
);

$builder->create_build_script();