forked from jslatts/nodechat-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
30 lines (24 loc) · 670 Bytes
/
Copy pathBuild.PL
File metadata and controls
30 lines (24 loc) · 670 Bytes
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
use strict;
use warnings;
use Module::Build 0.3601;
use Module::Build::JSAN::Installable;
my %module_build_args = (
'build_requires' => {},
'configure_requires' => {},
'dist_abstract' => 'MD5 and SHA-256 cryptographic hash methods for JavaScript',
'dist_author' => [
'Michael Bradley, Jr. <michaelsbradleyjr@gmail.com>'
],
'dist_name' => 'Hash',
'dist_version' => '0.06',
'license' => 'mit',
'module_name' => 'Hash',
'recommends' => {},
'recursive_test_files' => 1,
'requires' => {
'Joose' => '3.001'
},
'script_files' => []
);
my $build = Module::Build::JSAN::Installable->new(%module_build_args);
$build->create_build_script;