古い記事
ランダムジャンプ
新しい記事
Perlモジュール作成に関するリンク。自分用メモ。

- (貧乏な人のための)Perl モジュールの作り方。 : torus solutions!
  <http://www.torus.jp/memo/x200311/PerlModule.rd.html>

- プログラミングPerl〈VOLUME2〉に記述が。
  by とおるのウェブロ。: Perl のモジュールを作る。
     <http://weblo.torus.jp/archives/000192.html>
   プログラミングPerl〈VOLUME2〉

- ExtUtils::MakeMaker::Tutorial -
  MakeMaker を使ったモジュールの書き方
  <http://fleur.hio.jp/~hio/perldoc/modules/ExtUtils/
  ExtUtils-MakeMaker-6.16/lib/ExtUtils/MakeMaker/Tutorial.html
>

- perlnewmod - 新しいモジュールを配布するには
  <http://perldoc.jp/docs/perl/5.8.0/perlnewmod.pod>

- pmsetup <http://bulknews.net/lib/utils/pmsetup/>
CPAN に登録するのに便利な、Perl モジュールのボイラープレートを
つくります。
  miyagawa さんによる便利ツール。
  (via はてなブックマークのコメント by takefumi)

- make install で同時に実行スクリプトも(../bin/に)インストールする
  には、 Makefile.PL 中の WriteMakefile の引数に
'EXE_FILES' => ['bin/foo.pl', 'bin/bar.pl']
みたいなのを足す。ファイル名は MANIFEST での表記。
  ("perldoc -t ExtUtils::MakeMaker" より)