<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>transfixed but not dead! &#187; Module::Build</title>
	<atom:link href="http://transfixedbutnotdead.com/tag/modulebuild/feed/" rel="self" type="application/rss+xml" />
	<link>http://transfixedbutnotdead.com</link>
	<description>my ramblings on life, work &#38; anything left in-between</description>
	<lastBuildDate>Fri, 03 Feb 2012 16:03:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='transfixedbutnotdead.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://0.gravatar.com/blavatar/0a317653027efb1ab2bf8adde3dcb067?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>transfixed but not dead! &#187; Module::Build</title>
		<link>http://transfixedbutnotdead.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://transfixedbutnotdead.com/osd.xml" title="transfixed but not dead!" />
	<atom:link rel='hub' href='http://transfixedbutnotdead.com/?pushpress=hub'/>
		<item>
		<title>Repository link now appearing on CPAN</title>
		<link>http://transfixedbutnotdead.com/2009/05/01/repository-link-now-appearing-on-cpan/</link>
		<comments>http://transfixedbutnotdead.com/2009/05/01/repository-link-now-appearing-on-cpan/#comments</comments>
		<pubDate>Fri, 01 May 2009 17:45:16 +0000</pubDate>
		<dc:creator>draegtun</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[CPAN]]></category>
		<category><![CDATA[github]]></category>
		<category><![CDATA[Module::Build]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://transfixedbutnotdead.com/?p=301</guid>
		<description><![CDATA[Had me looking twice because seeing repository link on module pages on CPAN was new to me&#8230;.. Yes it is new and I wasn&#8217;t the first to spot it: hanekomu&#8217;s Perl blog: Metadata on search.cpan.org Hanekomu shows how to implement it in Module::Install. And Alexandr Ciornii comment points to how it can be done in [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=transfixedbutnotdead.com&amp;blog=351142&amp;post=301&amp;subd=draegtun&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Had me looking twice because seeing repository link on module pages on CPAN was new to me&#8230;..</p>
<p><a href="http://www.flickr.com/photos/draegtun/3490784819/" title="repo-line by draegtun, on Flickr"><img src="http://farm4.static.flickr.com/3573/3490784819_c867ea5ee0.jpg" width="500" height="157" alt="repo-line" /></a></p>
<p>Yes it is new and I wasn&#8217;t the first to spot it:  <a href="http://hanekomu.at/blog/dev/20090319-2129-search_cpan_metadata.html">hanekomu&#8217;s Perl blog: Metadata on search.cpan.org</a></p>
<p>Hanekomu shows how to implement it in Module::Install.   And Alexandr Ciornii comment points to how it can be done in Module::Build.</p>
<p>This is what you need to do in Module::Build (see meta_merge part):</p>
<p><pre class="brush: perl;">
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build-&gt;new(
    module_name         =&gt; 'Builder',
    license             =&gt; 'perl',
    dist_author         =&gt; 'Barry Walsh &lt;draegtun@cpan.org&gt;',
    dist_version_from   =&gt; 'lib/Builder.pm',
    build_requires =&gt; {
        'Test::More' =&gt; 0,
        'Carp'       =&gt; 0,
    },
    add_to_cleanup      =&gt; [ 'Builder-*' ],
    create_makefile_pl  =&gt; 'traditional',

    meta_merge =&gt; {
      resources =&gt; {
          bugtracker =&gt; 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=Builder',
          repository  =&gt; 'http://github.com/draegtun/builder/tree/master'
      }
    },
);

$builder-&gt;create_build_script();
</pre></p>
<p>Running &#8220;./Build distmeta&#8221; produces the correct META.yml</p>
<p>/I3az/</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/draegtun.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/draegtun.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/draegtun.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/draegtun.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/draegtun.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/draegtun.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/draegtun.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/draegtun.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/draegtun.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/draegtun.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/draegtun.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/draegtun.wordpress.com/301/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/draegtun.wordpress.com/301/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/draegtun.wordpress.com/301/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=transfixedbutnotdead.com&amp;blog=351142&amp;post=301&amp;subd=draegtun&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://transfixedbutnotdead.com/2009/05/01/repository-link-now-appearing-on-cpan/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/29cb106071d163d703484e63839d89cb?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">draegtun</media:title>
		</media:content>

		<media:content url="http://farm4.static.flickr.com/3573/3490784819_c867ea5ee0.jpg" medium="image">
			<media:title type="html">repo-line</media:title>
		</media:content>
	</item>
	</channel>
</rss>
