File: Makefile.PL

package info (click to toggle)
libclone-perl 0.41-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 140 kB
  • sloc: perl: 220; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 893 bytes parent folder | download
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
use ExtUtils::MakeMaker;

WriteMakefile(
    'NAME'          => 'Clone',
    'AUTHOR'        => 'Ray Finch <rdf@cpan.org>',
    'VERSION_FROM'  => 'Clone.pm',
    'ABSTRACT_FROM' => 'Clone.pm',
    'LICENSE'       => 'perl',
    'PL_FILES'      => {},
    'BUILD_REQUIRES' => {
      'Test::More' => 0,
    },
    'LIBS'          => [''],     # e.g., '-lm'
    'DEFINE'        => '',       # e.g., '-DHAVE_SOMETHING'
    'INC'           => '',       # e.g., '-I/usr/include/other'
#   'OPTIMIZE'      => '-g',     # e.g., '-I/usr/include/other'
    'OPTIMIZE'      => '-O3',    # e.g., '-I/usr/include/other'
    clean           => { FILES => '_Inline' },
    META_MERGE      => {
      resources => {
        license    => 'http://dev.perl.org/licenses/',
        bugtracker => 'https://github.com/garu/Clone/issues',
        repository => 'http://github.com/garu/Clone',
      },
    },
);