File: Makefile.PL

package info (click to toggle)
libwant-perl 0.18-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 132 kB
  • ctags: 15
  • sloc: perl: 163; makefile: 55
file content (13 lines) | stat: -rw-r--r-- 480 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
use ExtUtils::MakeMaker;
require 5.006;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'		=> 'Want',
    'VERSION_FROM'	=> 'Want.pm', # finds $VERSION
    'PREREQ_PM'		=> {}, # e.g., Module::Name => 1.1
    'LIBS'		=> [''], # e.g., '-lm'
    'DEFINE'		=> '', # e.g., '-DHAVE_SOMETHING'
    'INC'		=> '', # e.g., '-I/usr/include/other'
    dist => {TAR => 'gnutar'}, # Used by 'make dist'
);