File: Makefile.PL

package info (click to toggle)
libterm-progressbar-quiet-perl 0.31-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 72 kB
  • sloc: perl: 51; makefile: 2
file content (17 lines) | stat: -rw-r--r-- 453 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME         => 'Term::ProgressBar::Quiet',
    VERSION_FROM => 'lib/Term/ProgressBar/Quiet.pm',
    AUTHOR       => 'Leon Brocard <acme@astray.com>',
    LICENSE      => 'perl',
    PREREQ_PM    => {
        'Term::ProgressBar'      => '0',
        'IO::Interactive'        => '0',
        'Test::MockObject'       => '0', 
        'Test::More'             => '0',
    }
);