Dear Monks
I've written some perl-packages that I distribute to others. Right now the installation is easy:
make clean
perl Makefile.PL
make
make install
(I've started the project with h2xs)
Anyway, thats all very nice, however, my packages require packages from CPAN, so I tell the users what else they should install.
I realize that this is not the perfect way of distributing software. Is there a way to automate this process (or include the CPAN packages in my distribution)?
Cheers
LuCa
Update: thnx to all. For the moment I'll go for the
cpan . solution from
eserte, it works and I can include that command in my installtion file!