<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>评论：应用程序打包技术之二（deb篇）</title>
	<atom:link href="http://blog.solrex.org/articles/packaging-2-deb.html/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.solrex.org/articles/packaging-2-deb.html</link>
	<description>Engineering a better life, programming a great future.</description>
	<lastBuildDate>Thu, 09 Sep 2010 19:02:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>由：应用程序打包技术一（源代码篇） &#124; Solrex Shuffling</title>
		<link>http://blog.solrex.org/articles/packaging-2-deb.html#comment-1522</link>
		<dc:creator>应用程序打包技术一（源代码篇） &#124; Solrex Shuffling</dc:creator>
		<pubDate>Thu, 03 Sep 2009 09:05:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.solrex.cn/articles/packaging-2-deb.html#comment-1522</guid>
		<description>[...] 应用程序打包技术之一（源代码篇） 2. 应用程序打包技术之二（deb篇） 3. 应用程序打包技术之三（rpm 篇） 4. [...]</description>
		<content:encoded><![CDATA[<p>[...] 应用程序打包技术之一（源代码篇） 2. 应用程序打包技术之二（deb篇） 3. 应用程序打包技术之三（rpm 篇） 4. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：风语</title>
		<link>http://blog.solrex.org/articles/packaging-2-deb.html#comment-1521</link>
		<dc:creator>风语</dc:creator>
		<pubDate>Wed, 02 Sep 2009 05:34:35 +0000</pubDate>
		<guid isPermaLink="false">http://blog.solrex.cn/articles/packaging-2-deb.html#comment-1521</guid>
		<description>很有用，谢谢</description>
		<content:encoded><![CDATA[<p>很有用，谢谢</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：wzl12356</title>
		<link>http://blog.solrex.org/articles/packaging-2-deb.html#comment-1002</link>
		<dc:creator>wzl12356</dc:creator>
		<pubDate>Tue, 26 May 2009 14:44:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.solrex.cn/articles/packaging-2-deb.html#comment-1002</guid>
		<description>明白了。
可以使用邮件通知是很方便的！！</description>
		<content:encoded><![CDATA[<p>明白了。<br />
可以使用邮件通知是很方便的！！</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：Solrex Yang</title>
		<link>http://blog.solrex.org/articles/packaging-2-deb.html#comment-999</link>
		<dc:creator>Solrex Yang</dc:creator>
		<pubDate>Tue, 26 May 2009 11:20:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.solrex.cn/articles/packaging-2-deb.html#comment-999</guid>
		<description>&lt;a href=&quot;#comment-998&quot; rel=&quot;nofollow&quot;&gt;@wzl12356 &lt;/a&gt; 
我真没想到 configure 不支持相对地址。
这个错误的提示是说您应该使用一个绝对地址，从根目录开始
比如 /home/user/fakeroot/usr/</description>
		<content:encoded><![CDATA[<p><a href="#comment-998" rel="nofollow">@wzl12356 </a><br />
我真没想到 configure 不支持相对地址。<br />
这个错误的提示是说您应该使用一个绝对地址，从根目录开始<br />
比如 /home/user/fakeroot/usr/</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：wzl12356</title>
		<link>http://blog.solrex.org/articles/packaging-2-deb.html#comment-998</link>
		<dc:creator>wzl12356</dc:creator>
		<pubDate>Tue, 26 May 2009 11:10:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.solrex.cn/articles/packaging-2-deb.html#comment-998</guid>
		<description>&quot;3. 将您的可执行文件拷贝到 fakeroot/usr 下并不一定要手动一个个拷。如果您使用 GNU 自动工具集，./configure 时加个参数 --prefix=fakeroot/usr/ 即可；如果您自己写的 Makefile，可以在 Makefile 中使用一个变量 PREFIX=/usr，当您不加参数时，make install 的安装目标就是 /usr 下，您可以使用 Makefile -e PREFIX=fakeroot/usr/ install 来覆盖 Makefile 中的变量设置。&quot;
我按照上面的做法configure的时候出现如下错误，请问是什么原因？谢谢！！
configure: error: expected an absolute directory name for --prefix: fakeroot/usr/</description>
		<content:encoded><![CDATA[<p>"3. 将您的可执行文件拷贝到 fakeroot/usr 下并不一定要手动一个个拷。如果您使用 GNU 自动工具集，./configure 时加个参数 --prefix=fakeroot/usr/ 即可；如果您自己写的 Makefile，可以在 Makefile 中使用一个变量 PREFIX=/usr，当您不加参数时，make install 的安装目标就是 /usr 下，您可以使用 Makefile -e PREFIX=fakeroot/usr/ install 来覆盖 Makefile 中的变量设置。"<br />
我按照上面的做法configure的时候出现如下错误，请问是什么原因？谢谢！！<br />
configure: error: expected an absolute directory name for --prefix: fakeroot/usr/</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：ralph</title>
		<link>http://blog.solrex.org/articles/packaging-2-deb.html#comment-968</link>
		<dc:creator>ralph</dc:creator>
		<pubDate>Wed, 20 May 2009 00:31:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.solrex.cn/articles/packaging-2-deb.html#comment-968</guid>
		<description>受益匪浅！</description>
		<content:encoded><![CDATA[<p>受益匪浅！</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：dongbeisong</title>
		<link>http://blog.solrex.org/articles/packaging-2-deb.html#comment-826</link>
		<dc:creator>dongbeisong</dc:creator>
		<pubDate>Sat, 11 Apr 2009 15:57:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.solrex.cn/articles/packaging-2-deb.html#comment-826</guid>
		<description>写得很好！学习了。</description>
		<content:encoded><![CDATA[<p>写得很好！学习了。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：Solrex Yang</title>
		<link>http://blog.solrex.org/articles/packaging-2-deb.html#comment-830</link>
		<dc:creator>Solrex Yang</dc:creator>
		<pubDate>Thu, 12 Mar 2009 04:33:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.solrex.cn/articles/packaging-2-deb.html#comment-830</guid>
		<description>@rashost vps
怀疑您这评论是机器人发的还是人发的 :)
您这种站点用不着友情链接吧...</description>
		<content:encoded><![CDATA[<p>@rashost vps<br />
怀疑您这评论是机器人发的还是人发的 <img src='http://blog.solrex.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
您这种站点用不着友情链接吧...</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：rashost vps</title>
		<link>http://blog.solrex.org/articles/packaging-2-deb.html#comment-829</link>
		<dc:creator>rashost vps</dc:creator>
		<pubDate>Thu, 12 Mar 2009 04:19:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.solrex.cn/articles/packaging-2-deb.html#comment-829</guid>
		<description>我也喜欢deb格式，写的真不错！

楼主你好，我们互换博客友情链接如何？
http://rashost.com/blog/</description>
		<content:encoded><![CDATA[<p>我也喜欢deb格式，写的真不错！</p>
<p>楼主你好，我们互换博客友情链接如何？<br />
<a href="http://rashost.com/blog/" rel="nofollow">http://rashost.com/blog/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>由：Solrex Yang</title>
		<link>http://blog.solrex.org/articles/packaging-2-deb.html#comment-828</link>
		<dc:creator>Solrex Yang</dc:creator>
		<pubDate>Sun, 08 Mar 2009 14:08:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.solrex.cn/articles/packaging-2-deb.html#comment-828</guid>
		<description>@tumashu
实话说，兄弟在这方面并无太多经验，只是介绍一下自己通常的做法。
兄台如果有更好的办法，请不吝赐教。</description>
		<content:encoded><![CDATA[<p>@tumashu<br />
实话说，兄弟在这方面并无太多经验，只是介绍一下自己通常的做法。<br />
兄台如果有更好的办法，请不吝赐教。</p>
]]></content:encoded>
	</item>
	<item>
		<title>由：tumashu</title>
		<link>http://blog.solrex.org/articles/packaging-2-deb.html#comment-827</link>
		<dc:creator>tumashu</dc:creator>
		<pubDate>Sun, 08 Mar 2009 13:26:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.solrex.cn/articles/packaging-2-deb.html#comment-827</guid>
		<description>楼主上面提到的deb打包方式，是传说中的 “粗糙打包法”</description>
		<content:encoded><![CDATA[<p>楼主上面提到的deb打包方式，是传说中的 “粗糙打包法”</p>
]]></content:encoded>
	</item>
</channel>
</rss>
