diff options
author | Russ Allbery <rra@stanford.edu> | 2007-05-02 22:48:47 +0000 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2007-05-02 22:48:47 +0000 |
commit | eff9066ae3f888192ff1ff26f322b3412a419045 (patch) | |
tree | 6f84698646ef079c52980430e57a83035f887a36 /perl/Makefile.PL.in | |
parent | 7a7fc37d7c9672748f7df6d6b77e9b2e24145be0 (diff) |
Add the initial build infrastructure for the wallet Perl modules and
the superclass for Wallet::ACL. Add the Wallet::ACL::Krb5 ACL
verifier.
Diffstat (limited to 'perl/Makefile.PL.in')
-rw-r--r-- | perl/Makefile.PL.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/perl/Makefile.PL.in b/perl/Makefile.PL.in new file mode 100644 index 0000000..be27bd2 --- /dev/null +++ b/perl/Makefile.PL.in @@ -0,0 +1,14 @@ +# Makefile.PL for the Wallet Perl library. -*- perl -*- +# $Id$ + +use ExtUtils::MakeMaker; + +my $version = '@PACKAGE_VERSION@'; +$version =~ s/\.(\d)$/.0$1/; + +WriteMakefile( + NAME => 'Wallet', + VERSION => $version, + ABSTRACT => 'Wallet: a secure credential management system', + AUTHOR => 'Russ Allbery (rra@stanford.edu)' +); |