Il 07/04/10 11.06, Will ha scritto: > I know some OSes have a "right way" to install perl modules from CPAN. > Does OpenBSD have some similar methodology? I did some light > Google-ing, and I found this[1] post on the mailing list asking the > same question, but with no response. > > Thanks a bunch > > [1]http://openbsd.monkey.org/ports/200503/msg00100.html > >
There's /more than one way to do it/, now, OpenBSD is a Unix-like system so: * you can use the well known *BSD method: cd /usr/ports/; make search name=ModuleName; cd dir; make install clean; and live happy * you can use perl -MCPAN -e "shell" and write: install Module::Name ; and you can live happy * at shell, you can write: cpan and after install Module::Name; and you can live happy * you can download it from cpan.org, reading the INSTALL file and follow those rules. Have fun. Francesco //