-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathMakefile.PL
71 lines (68 loc) · 2.27 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
use strict;
use warnings;
use 5.006001;
use ExtUtils::MakeMaker;
WriteMakefile (
'NAME' => 'File::MimeInfo',
'ABSTRACT' => 'Determine file types',
'AUTHOR' => 'Jaap Karssenberg <pardus@cpan.org>',
'DISTNAME' => "File-MimeInfo",
'VERSION_FROM' => 'lib/File/MimeInfo.pm',
'LICENSE' => 'perl',
'MIN_PERL_VERSION' => '5.6.1',
'PREREQ_PM' => {
'Carp' => 0,
'Exporter' => 0,
'Encode::Locale' => 0,
'Fcntl' => 0,
'Pod::Usage' => 0,
'File::BaseDir' => '0.03',
'File::DesktopEntry' => '0.04',
},
'CONFIGURE_REQUIRES' => {
"ExtUtils::MakeMaker" => "6.30"
},
'TEST_REQUIRES' => {
'Test::More' => '0.88',
},
'LIBS' => [''],
'EXE_FILES' => [ 'mimetype', 'mimeopen' ],
'dist' => {
COMPRESS => "gzip -9f",
SUFFIX => "gz",
},
'test' => {
'TESTS' => "t/*.t"
},
META_MERGE => {
resources => {
repository => 'https://github.com/mbeijen/File-MimeInfo',
bugtracker => 'https://github.com/mbeijen/File-MimeInfo/issues',
},
# a list of our awesome contributors generated from git
# using the command:
# git shortlog -se | cut -f2- | sed "s/^/ '/;s/$/',/"
x_contributors => [
'Bernhard Rosenkränzer <bero@lindev.ch>',
'Christian Ludwig <chrissicool@gmail.com>',
'David Steinbrunner <dsteinbrunner@pobox.com>',
'Jitka Plesnikova <jplesnik@redhat.com>',
'Jonathan Dowland <jmtd@debian.org>',
'Martin Vassor <martin.vassor@alumni.epfl.ch>',
'Michiel Beijen <mb@x14.nl>',
'Nikos Skalkotos <skalkoto@grnet.gr>',
'Nitish Bezzala <nbezzala@yahoo.com>',
'Oleg Kostyuk <cub.uanic@gmail.com>',
'Patrick Burroughs (Celti) <celti@celti.name>',
'Philippe Bruhat (BooK) <book@cpan.org>',
'Rudolf Leermakers <rudolf@hatsuseno.org>',
'SPFabGerman <42518661+SPFabGerman@users.noreply.github.com>',
'Sean Smith <ssmith@ncsgraphics.com>',
'Slatian <baschdel@disroot.org>',
'Stefan Seifert <nine@detonation.org>',
'brian m. carlson <sandals@crustytoothpaste.net>',
'gregor herrmann <gregoa@debian.org>',
'mazunki <rolferen@gmail.com>',
],
},
);