2
我已經開始用module-starter
編寫一個Perl模塊。現在,我發現它將取決於非核心模塊。我應該在哪裏注意到這種依賴關係?如何聲明我的Module :: Starter模塊的依賴關係?
我已經開始用module-starter
編寫一個Perl模塊。現在,我發現它將取決於非核心模塊。我應該在哪裏注意到這種依賴關係?如何聲明我的Module :: Starter模塊的依賴關係?
module-starter
生物安裝者(Makefile.PL
)使用ExtUtils::MakeMaker。你需要
PREREQ_PM => {
'Some::Prereq' => 0,
},
添加到呼叫的參數列表WriteMakefile
其中。