File: Makefile.PL

package info (click to toggle)
libc-scan-perl 0.74-7
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 140 kB
  • ctags: 289
  • sloc: perl: 822; makefile: 445; ansic: 135
file content (12 lines) | stat: -rw-r--r-- 474 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'C::Scan',
    'dist'      => { COMPRESS => 'gzip', SUFFIX => '.gz'},
    'VERSION_FROM' => 'Scan.pm', # finds $VERSION
    'LIBS'	=> [''],   # e.g., '-lm' 
    'DEFINE'	=> '',     # e.g., '-DHAVE_SOMETHING' 
    'INC'	=> '',     # e.g., '-I/usr/include/other' 
    'PREREQ_PM' => {'Data::Flow' => 0.05},
);