summaryrefslogtreecommitdiff
path: root/Makefile.PL
blob: e67886f2c99b49146055fa6c2b796369e471871b (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 <phil@massyn.net>',
    VERSION_FROM        => 'lib/Auth/Yubikey_WebClient.pm',
    ABSTRACT_FROM       => 'lib/Auth/Yubikey_WebClient.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
	'LWP::Simple' => 1,
	'MIME::Base64' => 1,
	'Digest::HMAC_SHA1' => 1,
	'URI::Escape' => 1
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Auth-Yubikey_WebClient-*' },
);