-
Notifications
You must be signed in to change notification settings - Fork 14
/
Makefile.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 <[email protected]>',
'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 <[email protected]>',
'Christian Ludwig <[email protected]>',
'David Steinbrunner <[email protected]>',
'Jitka Plesnikova <[email protected]>',
'Jonathan Dowland <[email protected]>',
'Martin Vassor <[email protected]>',
'Michiel Beijen <[email protected]>',
'Nikos Skalkotos <[email protected]>',
'Nitish Bezzala <[email protected]>',
'Oleg Kostyuk <[email protected]>',
'Patrick Burroughs (Celti) <[email protected]>',
'Philippe Bruhat (BooK) <[email protected]>',
'Rudolf Leermakers <[email protected]>',
'SPFabGerman <[email protected]>',
'Sean Smith <[email protected]>',
'Slatian <[email protected]>',
'Stefan Seifert <[email protected]>',
'brian m. carlson <[email protected]>',
'gregor herrmann <[email protected]>',
'mazunki <[email protected]>',
],
},
);