aboutsummaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authorMatthias Benkard <matthias.benkard@egym.de>2015-04-22 11:56:27 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2015-04-23 21:55:52 +0200
commitccb82fe054a73a6e662b1998aaee5609c62a3b32 (patch)
treedc2a50247496a53819b397f7e358097137c00694 /Build.PL
parent057a1869cace85f8ea2931a92329988e509225d8 (diff)
Separate configure and build steps.HEADmaster
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL46
1 files changed, 46 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..7c320e2
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,46 @@
+#! /usr/bin/env perl
+
+use lib q(./lib);
+use Net::MulkyID::Builder; # Or whatever you want to call it
+
+my $build = Net::MulkyID::Builder->new
+ (
+ module_name => 'Net::MulkyID',
+ #license => 'agpl_3',
+ dist_author => 'Matthias Andreas Benkard <code@mulk.eu>',
+ dist_abstract => 'A simple Persona IdP.',
+ requires => {
+ "Carp" => 0,
+ "CGI" => 0,
+ "CGI::Fast" => 0,
+ "CGI::Session" => 0,
+ "common::sense" => 0,
+ "Crypt::OpenSSL::RSA" => 0,
+ "Crypt::OpenSSL::Bignum" => 0,
+ "File::Slurp" => 0,
+ "JSON" => 0,
+ "MIME::Base64" => 0,
+ "Mail::ExpandAliases" => 0,
+ "Mail::IMAPTalk" => 0,
+ "Modern::Perl" => 0,
+ "Time::HiRes" => 0,
+ "Syntax::Keyword::Junction" => 0,
+ "OIDC::Lite" => 0,
+ "OIDC::Lite::Client::WebServer" => 0,
+ "OIDC::Lite::Model::IDToken" => 0,
+ "LWP::UserAgent" => 0,
+ "HTTP::Request" => 0,
+ "Math::Random::ISAAC::XS" => 0,
+ "Bytes::Random::Secure" => 0
+ },
+ build_requires => {
+ "LWP::Simple" => 0,
+ "Modern::Perl" => 0,
+ "Crypt::OpenSSL::RSA" => 0,
+ "Crypt::OpenSSL::Bignum" => 0,
+ "File::Slurp" => 0,
+ "JSON" => 0,
+ "common::sense" => 0
+ },
+ );
+$build->create_build_script;