]> git.sur5r.net Git - i3/i3/blob - testcases/Makefile.PL
Merge remote-tracking branch 'mxf/merge' into next
[i3/i3] / testcases / Makefile.PL
1 #!/usr/bin/env perl
2 use strict; use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6     NAME => 'i3 testsuite',
7     MIN_PERL_VERSION => '5.010000', # 5.10.0
8     PREREQ_PM => {
9         'AnyEvent'     => 0,
10         'AnyEvent::I3' => '0.08',
11         'X11::XCB'     => '0.03',
12         'Test::Most'   => 0,
13         'Test::Deep'   => 0,
14         'EV'           => 0,
15     },
16     # don't install any files from this directory
17     PM => {},
18 );
19 # and don't run the tests while installing
20 sub MY::test { }