File: Makefile.PL

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

link("lib/Crypt/MySQL.xs", "MySQL.xs");
WriteMakefile(
    NAME                => 'Crypt::MySQL',
    AUTHOR              => 'Tomohiro IKEBE <ikebe@shebang.jp>',
    VERSION_FROM        => 'lib/Crypt/MySQL.pm',
    ABSTRACT_FROM       => 'lib/Crypt/MySQL.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'Digest::SHA' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Crypt-MySQL-*' },
);