2011-10-08 21:58:37 +02:00
|
|
|
#!/usr/bin/env perl
|
2011-10-10 22:56:43 +02:00
|
|
|
# vim:ts=4:sw=4:expandtab
|
2011-10-08 21:58:37 +02:00
|
|
|
use strict; use warnings;
|
|
|
|
use ExtUtils::MakeMaker;
|
|
|
|
|
|
|
|
WriteMakefile(
|
|
|
|
NAME => 'i3 testsuite',
|
|
|
|
MIN_PERL_VERSION => '5.010000', # 5.10.0
|
|
|
|
PREREQ_PM => {
|
|
|
|
'AnyEvent' => 0,
|
2011-10-20 21:31:44 +02:00
|
|
|
'AnyEvent::I3' => '0.09',
|
2011-10-08 21:58:37 +02:00
|
|
|
'X11::XCB' => '0.03',
|
|
|
|
'Test::Most' => 0,
|
|
|
|
'Test::Deep' => 0,
|
|
|
|
'EV' => 0,
|
2011-10-10 01:24:29 +02:00
|
|
|
'Inline' => 0,
|
2011-10-08 21:58:37 +02:00
|
|
|
},
|
|
|
|
# don't install any files from this directory
|
|
|
|
PM => {},
|
2011-10-10 22:56:43 +02:00
|
|
|
clean => {
|
|
|
|
FILES => 'testsuite-* latest'
|
|
|
|
}
|
2011-10-08 21:58:37 +02:00
|
|
|
);
|
|
|
|
# and don't run the tests while installing
|
|
|
|
sub MY::test { }
|