blob: f14a5ce47e4062a8b68c16e0c8df20a206ebacc9 (
plain)
1
2
3
4
5
6
7
8
9
|
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
NAME => 'UPS::Nut',
VERSION_FROM => 'Nut.pm', # finds $VERSION
AUTHOR => 'Gabor Kiss <kissg@ssg.ki.iif.hu>',
ABSTRACT => 'A module for communicating with a UPS via the NUT upsd'
);
|