File: Makefile.PL

package info (click to toggle)
libstring-crc32-perl 2-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 112 kB
  • sloc: perl: 57; ansic: 26; makefile: 3
file content (21 lines) | stat: -rw-r--r-- 722 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#! /usr/local/bin/perl

use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile being created.
WriteMakefile(
	'NAME' => 'String::CRC32',
	'DISTNAME' => 'String-CRC32',
	'OBJECT' => 'CRC32.o',
	'dist'   => {COMPRESS=>'gzip', SUFFIX=>'gz'},
    'LICENSE' => 'unrestricted',
	VERSION_FROM => 'CRC32.pm',
    META_MERGE => {
        resources => {
            license    => 'https://wiki.creativecommons.org/wiki/Public_domain',
            homepage   => 'https://metacpan.org/module/String::CRC32',
            bugtracker => 'https://github.com/leejo/string-crc32/issues',
            repository => 'https://github.com/leejo/string-crc32'
        },
    },
);