Hi,

I'm trying to package up a mojolicious App I wrote and have been following 
the instructions with  Mojolicious::Plugin::InstallablePaths

My Build.PL looks something like this;

---BEGIN----

use Module::Build::Mojolicious clean_install => 1;
 my $builder = Module::Build::Mojolicious->new(

  module_name => 'test',
  dist_author => 'me,
  license => 'perl',

   configure_requires => {
     'Module::Build::Mojolicious' => 0,
     'Module::Build' => 0.38,
   },
   requires => {
                    'File::Find::Rule' => 0,
                    'File::MMagic' => 0,
                    'Mojolicious' => 0,
                    'Mojolicious::Plugin::Authorization' => 0,
                    'Crypt::Blowfish' => 0,
                    'Experimental' => 0,
                },

    share_dir => 'lib/Jacaranda/files',
 );

 $builder->create_build_script;

---END----

My question is how do I get the dependancies to run the script, namely 
Module::Build::Mojolicious installed without having to install them from 
cpan manually? 

Many thanks.

                             

-- 
You received this message because you are subscribed to the Google Groups 
"Mojolicious" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/mojolicious.
For more options, visit https://groups.google.com/d/optout.

Reply via email to