gri3-wm/AnyEvent-I3/Makefile.PL

18 lines
340 B
Makefile
Raw Normal View History

use lib '.';
2010-03-13 17:11:09 +01:00
use inc::Module::Install;
name 'AnyEvent-I3';
all_from 'lib/AnyEvent/I3.pm';
author 'Michael Stapelberg';
requires 'AnyEvent';
requires 'AnyEvent::Handle';
requires 'AnyEvent::Socket';
requires 'JSON::XS';
if ($^O eq 'MSWin32') {
die "AnyEvent::I3 cannot be used on win32 (unix sockets are missing)";
}
2010-03-13 17:11:09 +01:00
WriteAll;