File: Makefile.PL

package info (click to toggle)
librg-blast-parser-perl 0.03-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180 kB
  • sloc: perl: 37; makefile: 5
file content (31 lines) | stat: -rwxr-xr-x 1,264 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/perl

use 5.008008;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

# /usr/share/doc/libextutils-xspp-perl/examples/Object-WithIntAndString/Makefile.PL
my $CC = 'g++';

WriteMakefile(
    NAME              => 'RG::Blast::Parser',
    VERSION_FROM      => 'lib/RG/Blast/Parser.pm', # finds $VERSION
    PREREQ_PM         => {
      'ExtUtils::XSpp' => '0.01',
    }, # e.g., Module::Name => 1.1
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT_FROM  => 'lib/RG/Blast/Parser.pm', # retrieve abstract from module
       AUTHOR         => 'Laszlo Kajan <lkajan@rostlab.org>') : ()),
    LIBS              => ['-lrostlab-blast'], # e.g., '-lm'
    DEFINE            => '', # e.g., '-DHAVE_SOMETHING'
        # Insert -I. if you add *.h files later:
    INC               => '-I.', # e.g., '-I/usr/include/other'
        # Un-comment this if you add C files to link with later:
    OBJECT            => '$(O_FILES)', # link all the C files too
    XSOPT             => '-C++ -hiertype -noprototypes',
    TYPEMAPS          => ['perlobject.map'],
    CC                => $CC,
    LD                => '$(CC)',
);
# vim:et:ts=4:ai: