File: Makefile.PL

package info (click to toggle)
libconvert-scalar-perl 1.12-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 124 kB
  • sloc: perl: 17; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 531 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use ExtUtils::MakeMaker;

use Canary::Stability Convert::Scalar => 1, 5.008;

WriteMakefile(
    dist	=> {
	            PREOP	=> 'pod2text Scalar.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
	            COMPRESS	=> 'gzip -9v',
	            SUFFIX	=> '.gz',
	           },
    NAME => "Convert::Scalar",
    VERSION_FROM => "Scalar.pm",
    CONFIGURE_REQUIRES => {
       "ExtUtils::MakeMaker" => 6.6,
       "Canary::Stability" => 0,
    },
    BUILD_REQUIRES => {
       ExtUtils::ParseXS => 3.28,
    },
);