]> git.sur5r.net Git - i3/i3/blob - testcases/Makefile.PL
Merge branch 'fix-mark'
[i3/i3] / testcases / Makefile.PL
1 #!/usr/bin/env perl
2 # vim:ts=4:sw=4:expandtab
3 use strict; use warnings;
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
7     NAME => 'i3 testsuite',
8     MIN_PERL_VERSION => '5.010000', # 5.10.0
9     PREREQ_PM => {
10         'AnyEvent'     => 0,
11         'AnyEvent::I3' => '0.09',
12         'X11::XCB'     => '0.03',
13         'Test::Most'   => 0,
14         'Test::Deep'   => 0,
15         'EV'           => 0,
16         'Inline'       => 0,
17     },
18     # don't install any files from this directory
19     PM => {},
20     clean => {
21         FILES => 'testsuite-* latest'
22     }
23 );
24 # and don't run the tests while installing
25 sub MY::test { }