ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/RCU/Makefile.PL
(Generate patch)

Comparing RCU/Makefile.PL (file contents):
Revision 1.1 by root, Sun Nov 6 17:17:37 2005 UTC vs.
Revision 1.2 by root, Sun Nov 6 17:24:32 2005 UTC

2 2
3$|=1; 3$|=1;
4 4
5print <<EOF; 5print <<EOF;
6 6
70) build no interface 7- devlirc is a low-level module than can rpelace lircd in some cases.
8- irman is an intefrace to the proprietary irman device.
9- lirc is an interface to the linux infrared remote control package.
10
110) devlirc interface only
81) irman interface (requires libirman) 121) devlirc + irman interfaces (requires libirman)
92) lirc interface (requires lirc) 132) devlirc + lirc interface (requires liblirc_client)
103) both interfaces 143) devlirc + irman + lirc
11 15
12EOF 16EOF
13 17
14print "which interfaces to build> "; $ints = <STDIN>; 18$ints = prompt "which interfaces to build", 2;
15 19
16push @DIR, "Irman" if $ints & 1; 20push @DIR, "Irman" if $ints & 1;
17push @DIR, "Lirc" if $ints & 2; 21push @DIR, "Lirc" if $ints & 2;
18 22
19WriteMakefile( 23WriteMakefile(
20 'dist' => { 24 dist => {
21 PREOP => 'pod2text RCU.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', 25 PREOP => 'pod2text RCU.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
22 COMPRESS => 'gzip -9v', 26 COMPRESS => 'gzip -9v',
23 SUFFIX => '.gz', 27 SUFFIX => '.gz',
24 }, 28 },
25 'NAME' => 'RCU', 29 NAME => 'RCU',
26 'VERSION_FROM' => 'RCU.pm', 30 VERSION_FROM=> 'RCU.pm',
27 'LIBS' => [''],
28 'DEFINE' => '',
29 'INC' => '',
30 DIR => \@DIR, 31 DIR => \@DIR,
31); 32);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines