Merge remote-tracking branch 'mxf/merge' into next

next
Michael Stapelberg 2011-10-08 22:01:41 +01:00
commit dbeef95ec5
1 changed files with 20 additions and 0 deletions

20
testcases/Makefile.PL Executable file
View File

@ -0,0 +1,20 @@
#!/usr/bin/env perl
use strict; use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'i3 testsuite',
MIN_PERL_VERSION => '5.010000', # 5.10.0
PREREQ_PM => {
'AnyEvent' => 0,
'AnyEvent::I3' => '0.08',
'X11::XCB' => '0.03',
'Test::Most' => 0,
'Test::Deep' => 0,
'EV' => 0,
},
# don't install any files from this directory
PM => {},
);
# and don't run the tests while installing
sub MY::test { }