Acme-CreatingCPANModules
view release on metacpan or search on metacpan
slides/slide4b.html view on Meta::CPAN
window.close();
}
function handleKey(e) {
var key;
if (e == null) {
// IE
key = event.keyCode
}
else {
// Mozilla
if (e.altKey || e.ctrlKey) {
return true
}
key = e.which
}
switch(key) {
case 8: prevSlide(); break
case 13: nextSlide(); break
case 32: nextSlide(); break
case 81: closeSlide(); break
case 105: indexSlide(); break
case 110: nextSlide(); break
case 112: prevSlide(); break
case 115: startSlide(); break
default: //xxx(e.which)
}
}
document.onkeypress = handleKey
// END controls.js
</script>
</head>
<body>
<div id="topbar">
<table width='100%'>
<tr>
<td width="13%">CPAN</td>
<td align="center" width="73%">
<a accesskey="s" href="start.html">Creating CPAN modules</a>
</td>
<td align="right" width="13%">
#4
</td>
</tr>
</table>
</div>
<!-- END top -->
<div id="content">
<div class="top_spacer"></div>
<h1>With Module::Starter</h1>
<pre class="formatter_pre">$ module-starter
Usage:
module-starter [options]
Options:
--module=module Module name (required, repeatable)
--distro=name Distribution name (optional)
--dir=dirname Directory name to create new module in (optional)
--builder=module Build with 'ExtUtils::MakeMaker' or 'Module::Build'
--eumm Same as --build=ExtUtils::MakeMaker
--mb Same as --build=Module::Build
--author=name Author's name (required)
--email=email Author's email (required)
--license=type License under which the module will be distributed
(default is the same license as perl)
--verbose Print progress messages while working
--force Delete pre-existing files if needed
--help Show this message
Example:
module-starter --module=Foo::Bar,Foo::Bat \
--author="Andy Lester" --email=andy@petdance.com
</pre>
</div>
<!-- BEGIN bottom -->
<div id="bottombar">
<table width="100%">
<tr>
<td align="left" valign="middle">
<div style="display:none">
<a accesskey='p' href="slide4a.html">< < Previous</a> |
<a accesskey='i' href="index.html">Index</a> |
<a accesskey='n' href="slide5.html">Next >></a>
</div>
</td>
<td align="right" valign="middle">
Copyright © 2005 José Castro
</td>
</tr>
</table>
</div>
<div id="logo"></div>
<div class="spacer">
<a name="end"></a>
</div>
</body>
</html>
<!-- END slide -->
( run in 0.936 second using v1.01-cache-2.11-cpan-39bf76dae61 )