replace M::Build with M::Install
[gitmo/Class-MOP.git] / Build.PL
diff --git a/Build.PL b/Build.PL
deleted file mode 100644 (file)
index abce9a1..0000000
--- a/Build.PL
+++ /dev/null
@@ -1,29 +0,0 @@
-use Module::Build;
-
-use strict;
-use warnings;
-
-my $build = Module::Build->new(
-    module_name => 'Class::MOP',
-    license => 'perl',
-    requires => {
-        'Scalar::Util' => '1.18',
-        'Sub::Name'    => '0.02',
-        'Carp'         => '0',
-        'B'            => '0',
-    },
-    optional => {},
-    build_requires => {
-        'Test::More'      => '0.62',
-        'Test::Exception' => '0.21',
-        'File::Spec'      => '0',
-    },
-    create_makefile_pl => 'traditional',
-    recursive_test_files => 1,
-    add_to_cleanup => [
-        'META.yml', '*.bak', '*.gz', 'Makefile.PL',
-    ],
-);
-
-$build->create_build_script;
-