-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
41 lines (34 loc) · 1.07 KB
/
Build.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
#!/usr/bin/perl
# Bugzilla-BG
# Copyright (C) 2005-2019 Georgi D. Sotirov, gsotirov@gmail.com
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
# This Source Code Form is "Incompatible With Secondary Licenses", as
# defined by the Mozilla Public License, v. 2.0.
#
# DESCRIPTION:
# Module build script using Module::Build for testing
#
use strict;
use warnings;
use FindBin qw($RealBin);
use lib ($RealBin);
use Module::Build;
my $build = Module::Build->new
(
module_name => "bugzilla-bg",
dist_abstract => "Bugzilla in Bulgarian",
dist_version => "5.0.6",
dist_author => "Georgi D. Sotirov",
license => 'mozilla',
configure_requires => {'Module::Build' => '0.42'},
requires => {'perl' => '>= 5.10.1',
'Template' => '2.24',
},
create_readme => 0,
create_makefile_pl => 0
);
$build->create_build_script;