added Build.PL
Marcus Ramberg [Wed, 23 Nov 2005 12:21:41 +0000 (12:21 +0000)]
Build.PL [new file with mode: 0644]

diff --git a/Build.PL b/Build.PL
new file mode 100644 (file)
index 0000000..8fdd72b
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,17 @@
+use strict;
+use Module::Build;
+
+my $build = Module::Build->new(
+    create_makefile_pl => 'passthrough',
+    license            => 'perl',
+    module_name        => 'Catalyst::Plugin::Authentication::Credential::TypeKey',
+    requires           => {
+        'Catalyst'         => '5.5',
+       'Catalyst::Plugin::Authentication' => 0,
+       'Authen::TypeKey'
+
+    },
+    create_readme => 1,
+);
+$build->create_build_script;
+