File: Makefile.PL

package info (click to toggle)
libcrypt-cracklib-perl 1.7-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 204 kB
  • sloc: perl: 2,044; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 486 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use inc::Module::Install;

name('Crypt-Cracklib');
license('perl');
perl_version('5.005');
all_from('Cracklib.pm');

homepage 'https://github.com/dsully/perl-crypt-cracklib';
bugtracker 'https://github.com/dsully/perl-crypt-cracklib/issues';

test_requires 'Test::Pod::Coverage' => '1.08';
test_requires 'Pod::Coverage' => '0.19';
test_requires 'Test::More' => '0.47';

requires_external_cc();

cc_lib_links('crack');
cc_optimize_flags('-g -Wall -Werror');

auto_install();
WriteAll();