-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
53 lines (50 loc) · 1.5 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
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Text::Amuse::Compile',
AUTHOR => q{Marco Pessotto <[email protected]>},
VERSION_FROM => 'lib/Text/Amuse/Compile.pm',
ABSTRACT_FROM => 'lib/Text/Amuse/Compile.pm',
LICENSE => 'Perl_5',
PL_FILES => {},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
'File::Temp' => 0,
'PDF::API2' => 0,
},
PREREQ_PM => {
# ours
'Text::Amuse' => 1.81,
'PDF::Imposition' => 0.23,
'EBook::EPUB::Lite' => 0.71,
# needed
'Moo' => 1,
'Type::Tiny' => 1,
'Template::Tiny' => 1.12, # version in wheezy
'IPC::Run' => 0,
'Archive::Zip' => 0, # alread a requirement of EBook::EPUB
'Path::Tiny' => 0,
'JSON::MaybeXS' => 0,
},
EXE_FILES => [
'bin/muse-compile.pl',
'bin/muse-create-font-file.pl',
],
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Text-Amuse-Compile-*' },
META_MERGE => {
resources => {
repository => 'https://github.com/melmothx/text-amuse-compile',
homepage => 'http://amusewiki.org',
x_IRC => 'irc://irc.libera.chat/#amusewiki',
x_WebIRC => 'https://web.libera.chat/#amusewiki',
},
},
);
# Local Variables:
# cperl-indent-parens-as-block: t
# End: