File: Makefile.PL

package info (click to toggle)
libvideo-capture-v4l-perl 0.224-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 572 kB
  • ctags: 563
  • sloc: ansic: 4,924; perl: 2,746; makefile: 57; sh: 22
file content (13 lines) | stat: -rw-r--r-- 320 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
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',
	CCFLAGS  => '-fPIC',
    LIBS	=> '-lpthread',
);