File: Makefile.PL

package info (click to toggle)
libvideo-capture-v4l-perl 0.902-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 584 kB
  • sloc: perl: 2,749; ansic: 1,494; sh: 22; makefile: 3
file content (12 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
use ExtUtils::MakeMaker;

if ($^O ne "linux") {
   print "\nFolks, Video4linux, as the name implies, requires linux.\n";
   print "Configuring anyway, but you have been warned!\n\n";
}

WriteMakefile(
    'NAME'	=> 'Video::Capture::V4l',
    'VERSION_FROM' => 'V4l.pm',
    LIBS	=> '-lpthread -lv4l1',
);