File: Makefile.PL

package info (click to toggle)
libstring-mkpasswd-perl 0.03-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 136 kB
  • sloc: perl: 246; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 442 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env perl

use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME          => 'String::MkPasswd',
    AUTHOR        => 'Chris Grau <cgrau@cpan.org>',
    VERSION_FROM  => 'lib/String/MkPasswd.pm',
    ABSTRACT_FROM => "lib/String/MkPasswd.pm",
    EXE_FILES     => [ 'bin/mkpasswd.pl' ],
    dist          => { COMPRESS => 'gzip -9f', SUFFIX => 'gz' },
    clean         => { FILES => 'String-MkPasswd-*' },
);