-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile.PL
49 lines (45 loc) · 1.16 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
use strict;
use warnings;
use utf8;
use 5.012;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'kateb',
AUTHOR => 'Kiavash',
VERSION_FROM => 'lib/kateb.pm',
ABSTRACT => 'Install and update free Farsi fonts',
LICENSE => 'gpl_3',
EXE_FILES => ["bin/kateb"],
MIN_PERL_VERSION => 5.012,
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
PREREQ_PM => {
'File::Temp' => 0,
'File::Path' => 0,
'File::Spec' => 0,
'File::Spec::Functions' => 0,
'File::Copy' => 0,
'HTTP::Tinyish' => 0,
'URI' => 0,
'HTTP::Date' => 0,
'JSON::PP' => 0,
'Archive::Zip' => 0,
'Term::ANSIColor' => 0
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/kiamazi/kateb.git',
web => 'https://github.com/kiamazi/kateb',
},
bugtracker => {
web => 'https://github.com/kiamazi/kateb/issues'
},
},
},
);
1;