--- /dev/null
+use strict;
+use warnings;
+use Module::Build;
+
+my $builder = Module::Build->new(
+ module_name => 'Class::C3::Componentised',
+ dist_author => 'Matt S. Trout <mst@shadowcatsystems.co.uk>',
+ license => 'perl',
+ create_makefile_pl => 'passthrough',
+ dist_version_from => 'lib/Class/C3/Componentised.pm',
+ requires => {
+ 'Class::C3' => 0,
+ },
+ build_requires => {
+ 'Test::More' => 0,
+ },
+ add_to_cleanup => [ 'Class-C3-Componentised-*' ],
+);
+
+$builder->create_build_script();
--- /dev/null
+Revision history for Class-C3-Componentised
+
+0.01 soon
+ First version, based on DBIx::Class r2082
+
--- /dev/null
+Build.PL
+Changes
+MANIFEST
+META.yml # Will be created by "make dist"
+README
+lib/Class/C3/Componentised.pm
+t/00-load.t
+t/boilerplate.t
+t/pod-coverage.t
+t/pod.t
--- /dev/null
+---
+name: Class-C3-Componentised
+version: 0.01
+author:
+ - 'Matt S. Trout <mst@shadowcatsystems.co.uk>'
+abstract: ~
+license: perl
+requires:
+ Class::C3: 0
+build_requires:
+ Test::More: 0
+provides:
+ Class::C3::Componentised:
+ file: lib/Class/C3/Componentised.pm
+ version: 0.01
+generated_by: Module::Build version 0.26
--- /dev/null
+README for Class::C3::Componentised
+
+Description here
+
+INSTALL
+
+ perl Build.PL
+ ./Build
+ ./Build test
+ ./Build install
+
+LICENSE
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.