]> git.sur5r.net Git - i3/i3/blobdiff - testcases/Makefile.PL
cmd_exit: Let i3_exit handle shutdown (#3600)
[i3/i3] / testcases / Makefile.PL
index eb0f73a45dd3076eb0272ae9e182e54488eade00..bf4e5dd70802c880b29f23e8c544b828df797e2b 100755 (executable)
@@ -4,18 +4,25 @@ use strict; use warnings;
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
-    NAME => 'i3 testsuite',
+    NAME => 'i3-testsuite',
     MIN_PERL_VERSION => '5.010000', # 5.10.0
     PREREQ_PM => {
         'AnyEvent'     => 0,
-        'AnyEvent::I3' => '0.09',
-        'X11::XCB'     => '0.03',
+        'X11::XCB'     => '0.12',
         'Inline'       => 0,
+        'Inline::C'    => 0,
+        'ExtUtils::PkgConfig' => 0,
+        'Test::More'   => '0.94',
+        'IPC::Run' => 0,
     },
     PM => {}, # do not install any files from this directory
     clean => {
         FILES => 'testsuite-* latest i3-cfg-for-*',
-    }
+    },
+    # This is a pure-Perl distribution:
+    linkext => {
+        LINKTYPE => '',
+    },
 );
 
 package MY;