File: Makefile.PL

package info (click to toggle)
libset-object-perl 1.10-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 252 kB
  • ctags: 75
  • sloc: perl: 861; makefile: 45
file content (12 lines) | stat: -rw-r--r-- 507 bytes parent folder | download
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'	=> 'Set::Object',
    'VERSION_FROM' => 'lib/Set/Object.pm', # finds $VERSION
    'ABSTRACT'  => "Unordered collections (sets) of Perl Objects",
    'LIBS'	=> [''],   # e.g., '-lm' 
    'DEFINE'	=> '',     # e.g., '-DHAVE_SOMETHING' 
    'INC'	=> '',     # e.g., '-I/usr/include/other' 
    test => { TESTS => "t/object/*.t t/scalar/*.t" },
);