File: Makefile.PL

package info (click to toggle)
libset-tiny-perl 0.02-1~bpo70%2B1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy-backports
  • size: 108 kB
  • sloc: perl: 348; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 311 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/perl
use strict;

use ExtUtils::MakeMaker;
WriteMakefile(
    NAME => 'Set::Tiny',
    ABSTRACT_FROM => 'lib/Set/Tiny.pm',
    VERSION_FROM => 'lib/Set/Tiny.pm',
    AUTHOR => 'Stanis Trendelenburg <trendels@cpan.org>',
    LICENSE => 'perl',
    PREREQ_PM => {
        'Test::More' => 0,
    },
);