rel eng and other crap for Cred::HTTP
Yuval Kogman [Fri, 8 Sep 2006 08:31:35 +0000 (08:31 +0000)]
Build.PL [deleted file]
Makefile.PL [new file with mode: 0644]

diff --git a/Build.PL b/Build.PL
deleted file mode 100644 (file)
index 84d6cd1..0000000
--- a/Build.PL
+++ /dev/null
@@ -1,20 +0,0 @@
-use strict;
-use Module::Build;
-my $build = Module::Build->new(
-    create_makefile_pl => 'traditional',
-    license            => 'perl',
-    module_name        => 'Catalyst::Plugin::Authentication::Credential::HTTP',
-    requires           => {
-        'perl'                             => '5.8.1',
-        'Catalyst'                         => '5.49',
-        'Catalyst::Plugin::Authentication' => 0,
-        'String::Escape'                   => 0,
-        'URI::Escape'                      => 0,
-        'Test::MockObject'                 => '1.01',
-        'Test::Exception'                  => 0,
-        'Data::UUID'                       => 0.11
-    },
-    create_readme => 1,
-    sign          => 0,
-);
-$build->create_build_script;
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..58e61fd
--- /dev/null
@@ -0,0 +1,18 @@
+use ExtUtils::MakeMaker;
+WriteMakefile(
+    'NAME'         => 'Catalyst::Plugin::Authentication::Credential::HTTP',
+    'VERSION_FROM' => 'lib/Catalyst/Plugin/Authentication/Credential/HTTP.pm',
+    'PREREQ_PM'    => {
+        'Catalyst'                         => '5.49',
+        'Catalyst::Plugin::Authentication' => 0,
+        'Data::UUID'                       => '0.11',
+        'String::Escape'                   => 0,
+        'Test::Exception'                  => 0,
+        'Test::MockObject'                 => '1.01',
+        'URI::Escape'                      => 0,
+    },
+    'INSTALLDIRS' => 'site',
+    'EXE_FILES'   => [],
+    'PL_FILES'    => {},
+    'SIGN'        => 1,
+);