summaryrefslogtreecommitdiff
path: root/t/data/testing/Build.PL
diff options
context:
space:
mode:
authorJonathan "Duke" Leto <jonathan@leto.net>2011-05-23 20:43:43 -0700
committerJonathan "Duke" Leto <jonathan@leto.net>2011-05-23 20:43:43 -0700
commit15e96b9f945f9d58ddbe07fab0b2d41474b05118 (patch)
treef7d0349fa5e8c5987e7da0c26022d385e82a8262 /t/data/testing/Build.PL
parentTeach capsule about HARNESS_TIMER (diff)
parentUnbreak capsule.sh (diff)
downloadjitterbug-15e96b9f945f9d58ddbe07fab0b2d41474b05118.tar.gz
Merge branch 'git_refactor'
Diffstat (limited to '')
-rw-r--r--t/data/testing/Build.PL28
1 files changed, 28 insertions, 0 deletions
diff --git a/t/data/testing/Build.PL b/t/data/testing/Build.PL
new file mode 100644
index 0000000..1443b82
--- /dev/null
+++ b/t/data/testing/Build.PL
@@ -0,0 +1,28 @@
+use strict;
+use warnings;
+use Module::Build;
+
+my $builder = Module::Build->new(
+ module_name => 'testing',
+ license => 'perl',
+ dist_author => 'The Gods Themselves',
+ dist_abstract => 'This universe is only a test',
+ dist_version => 1,
+ include_dirs => '',
+ build_requires => {
+ 'Test::More' => 0,
+ },
+ requires => {
+ 'YAML' => 0,
+ },
+ add_to_cleanup => [ '' ],
+ create_makefile_pl => 'traditional',
+ meta_merge => {
+ resources => {
+ repository => 'http://github.com/solgenomics/testing/tree/master'
+ },
+ },
+);
+
+$builder->create_build_script();
+print "Have a great day!\n";