summaryrefslogtreecommitdiff
path: root/Build.PL
diff options
context:
space:
mode:
authorpepper <peppersclothescult@gmail.com>2015-02-07 19:08:27 -0800
committerpepper <peppersclothescult@gmail.com>2015-02-07 19:08:27 -0800
commitbfb44c051b0ab57ff497f115bd9ab901e8299ced (patch)
tree3e476b0d3c7377dafa88756bdcc7b5da7f298c3c /Build.PL
first
Diffstat (limited to 'Build.PL')
-rw-r--r--Build.PL19
1 files changed, 19 insertions, 0 deletions
diff --git a/Build.PL b/Build.PL
new file mode 100644
index 0000000..8e9d168
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,19 @@
+use Module::Build;
+ my $build = Module::Build->new
+ (
+ dist_name => 'mytest',
+ dist_version => '1.0.0',
+# module_name => 'Foo',
+ requires => {
+ 'Data::Dumper' => 0,
+ 'IO::Socket' => 0,
+ 'Games::Cards' => 0,
+ },
+ installation_path => { "/home/pepper/new/" },
+ config => { cc => 'gcc', ld => 'gcc' },
+ );
+$build->install_path(conf => $installation_path);
+#$build->dispatch('build');
+#$build->dispatch('test', verbose => 1);
+$build->dispatch('installdeps');
+$build->create_build_script;