summaryrefslogtreecommitdiff
path: root/t/data/testing/Build.PL
diff options
context:
space:
mode:
authorJonathan "Duke" Leto <jonathan@leto.net>2011-05-22 21:46:45 -0700
committerJonathan "Duke" Leto <jonathan@leto.net>2011-05-22 21:46:45 -0700
commit3381139bcd476b549d6a8e58fb8c71cf33b225af (patch)
tree2bad0a5636a3384887dc31deea84115ea8922baf /t/data/testing/Build.PL
parentMess around with test data (diff)
downloadjitterbug-3381139bcd476b549d6a8e58fb8c71cf33b225af.tar.gz
Try adding a git repo for testing again
Git thinks we are trying to use submodules, so fake it out by renaming the .git directory to ._git_ . It will need to be renamed to .git during test runs.
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";