31 января 2008, 14:57 более 2-х лет назад
Установка модулей Perl
1. Проверяем какие модули уже установлены с помощью скрипта
3. В командной строке утилиты пишем название модуля
#!/usr/local/bin/perl2. Установка модулей с помощью утилиты cpan, запускается командой cpan
use ExtUtils::Installed;
my $instmod = ExtUtils::Installed->new();
foreach my $module ($instmod->modules()) {
my $version = $instmod->version($module) || «???»;
print «$module — $version\n»;
}
3. В командной строке утилиты пишем название модуля
install DBD::mysql4. Если всё обратилось ошибками, пишем
force install DBD::mysql5. Для удаления модуля пользуемся скриптом
#!/usr/local/bin/perl -w6. Установка модуля вручную, ищем на сайте http://search.cpan.org.
use ExtUtils::Packlist;
use ExtUtils::Installed;
$ARGV[0] or die «Usage: $0 Module::Name\n»;
my $mod = $ARGV[0];
my $inst = ExtUtils::Installed->new();
foreach my $item (sort($inst->files($mod))) {
print «removing $item\n»;
unlink $item;
}
my $packfile = $inst->packlist($mod)->packlist_file();
print «removing $packfile\n»;
unlink $packfile;
perl Makefile.PL
make
make test
make install
2 комментария
#1
kan5300 31 января 2008, 17:49
А потом хер удалишь/обновишь из портов =(
AMIGO
31 января 2008, 17:55
Про удаление модуля добавил, работает ли с force не знаю.
Great site! You can find related info on the following sites: ,, http://confederateflaglayouts.meetiwl.cn/ confederate flag layouts ,, http://truyennguoilonnet.ujybld.cn/ truyen nguoi lon net ,, http://deltasigmathetasororitychants.ujybld.cn/ delta sigma theta sorority chants ,, http://nickelanddimedcriticalanalysis.oeoece.cn/ nickel and dimed critical analysis ,, http://jessicombsaccident.ujybld.cn/ jessi combs accident ,, http://freecomputerscareprank.bnuaoce.cn/ free computer scare prank ,, http://freeprintablechristmasmadlibs.lgaaycvq.cn/ free printable christmas mad libs ,, http://greetmetonescom.lgaaycvq.cn/ greet me tones com ,, http://bishoptudorbismarck.ujybld.cn/ bishop tudor bismarck ,, http://monsterenergydrinkmyspacelayouts.ujybld.cn/ monster energy drink myspace layouts ,, http://karrinesteffansvideo.ujybld.cn/ karrine steffans video ,, http://freerecipesbannanutbread.ujybld.cn/ free recipes banna nut bread ,, http://jcpenneysassociatekiosk.bnuaoce.cn/ jcpenneys associate kiosk ,, http://softwareparahacertarjetasdebautizo.drlooeeo.cn/ software para hacer tarjetas de bautizo ,, http://filmnguoilon.ynshmeuy.cn/ film nguoi lon ,, http://gabrielaroeldesnuda.meetiwl.cn/ gabriela roel desnuda ,, http://fotosgratisdevajinasrasuradas.avyeuyea.cn/ fotos gratis de vajinas rasuradas ,, http://pitbullsforsaleingabluebullies.eoeayj.cn/ pitbulls for sale in ga blue bullies ,, http://catsouraspictureaccident.ynshmeuy.cn/ catsouras picture accident ,, http://hotmalluvideo.drlooeeo.cn/ hot mallu video ,,
Эту заметку нельзя комментировать
