File: Makefile.PL

package info (click to toggle)
wakeonlan 0.41-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 60 kB
  • ctags: 5
  • sloc: perl: 76; makefile: 47
file content (16 lines) | stat: -rw-r--r-- 447 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

WriteMakefile(
	'NAME'			=> 'wakeonlan',
	'VERSION_FROM'	=> 'wakeonlan',		# finds $VERSION
	'EXE_FILES'		=> [wakeonlan],
	($] ge '5.005') ? (
		'AUTHOR'	=> 'Jose Pedro Oliveira (jpo@di.uminho.pt)',
		'ABSTRACT' 	=> "Script to send 'magic packets' to wakeable computers"
	) : (
	),
);

# vim:set ai ts=4 sw=4: