File: Makefile.PL

package info (click to toggle)
libtest-image-gd-perl 0.03-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 96 kB
  • sloc: perl: 270; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 483 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME         => 'Test::Image::GD',
    VERSION_FROM => 'lib/Test/Image/GD.pm', 
    PREREQ_PM    => {
        # for the module itself
        'Test::Builder'         => 0,        
        'GD'                    => 0,
        'Scalar::Util'          => 0,
        # for testing the module
        'Test::Builder::Tester' => 0,                
        'Test::More'            => 0.47,        
        'File::Spec'            => 0,
    }
);