renamed!
[catagits/Catalyst-Devel.git] / share / Makefile.PL.tt
diff --git a/share/Makefile.PL.tt b/share/Makefile.PL.tt
new file mode 100644 (file)
index 0000000..a4cfabb
--- /dev/null
@@ -0,0 +1,20 @@
+[% startperl %]
+# IMPORTANT: if you delete this file your app will not work as
+# expected.  You have been warned.
+use inc::Module::Install;
+
+name '[% dir %]';
+all_from '[% path %]';
+
+requires 'Catalyst::Runtime' => '[% catalyst_version %]';
+requires 'Catalyst::Plugin::ConfigLoader';
+requires 'Catalyst::Plugin::Static::Simple';
+requires 'Catalyst::Action::RenderView';
+requires 'parent';
+requires 'Config::General'; # This should reflect the config file format you've chosen
+                 # See Catalyst::Plugin::ConfigLoader for supported formats
+catalyst;
+
+install_script glob('script/*.pl');
+auto_install;
+WriteAll;