summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: 4bd622273918ba50e224bb2b43ba53fae82476cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Auth::Yubikey_WebClient',
    AUTHOR              => 'Phil Massyn <massyn@gmail.com>',
    VERSION_FROM        => 'lib/Auth/Yubikey_WebClient.pm',
    ABSTRACT_FROM       => 'lib/Auth/Yubikey_WebClient.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
	'LWP::UserAgent' => 1,
	'MIME::Base64' => 1,
	'Digest::HMAC_SHA1' => 1,
	'URI::Escape' => 1
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Auth-Yubikey_WebClient-*' },
);