软件工程

本类阅读TOP10

·PHP4 + MYSQL + APACHE 在 WIN 系统下的安装、配置
·Linux 入门常用命令(1)
·Linux 入门常用命令(2)
·使用 DCPROMO/FORCEREMOVAL 命令强制将 Active Directory 域控制器降级
·DirectShow学习(八): CBaseRender类及相应Pin类的源代码分析
·基于ICE方式SIP信令穿透Symmetric NAT技术研究
·Windows 2003网络负载均衡的实现
·一网打尽Win十四种系统故障解决方法
·数百种 Windows 软件的免费替代品列表
·收藏---行百里半九十

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
使用cpan2rpm获得cpan上的rpm包

作者:未知 来源:月光软件站 加入时间:2005-6-5 月光软件站

在cpan上查找到的perl module 一般都是tar.gz的src包

但这样安装起来就存在麻烦,还要执行perl Makefile.pl之类的

怎么样可以找到相应的rpm包呢

cpan2rpm 解决了这个问题,它可以帮你获的你想要的rpm包(并不是全部)

具体可以查看cpan的主页 http://perl.arix.com/cpan2rpm/

This script generates an RPM package from a Perl module. It uses the standard RPM file structure and creates a spec file, a source RPM, and a binary, leaving these in their respective directories.

The script can operate on local files, directories, urls and CPAN module names. Install this package if you want to create RPMs out of Perl modules.

The syntax for cpan2rpm supports multiple distribution names, which can take one of four different forms:

  1. a CPAN module name (e.g. XML::Simple) - When a module name is passed, the script will ``walk'' search.cpan.org to determine the latest distribution. If an exact match is not found, the CPAN module is used to make this determination. If you have not yet configured this module, please refer to the REQUIREMENTS section below for further instructions.
  2. a URL (both http:// and ftp:// style locators will work) - In this and the above case, an automatic download of the needed tarball is performed (see notes for how). The tarball is deposited in the SOURCES directory.
  3. a path to a tarball (e.g. /tmp/XML-Simple-1.05.tar.gz) - In this case, the tarball indicated gets copied to the SOURCES directory.
  4. a directory path - The directory specified must contain a Makefile.PL. If the user intends to build a package from a directory (i.e. user does NOT specify --spec-only), the commands:
        perl Makefile.PL
        make
        make dist

    will be performed in that directory in order to create the tarball necessary for package creation.

不过我还没试验成功从一个tar.gz转换成rpm格式,我发现如果cpan上有对应的rpm包就可以获得,

没有就提示出没有了

同时这里还提供了web 接口,你可以不需要安装cpan2rpm直接获取

注:很多网上说这样使用.但我发现却不能成功

   cpan2rpm Proc-Daemon-0.03.tar.gz

-- cpan2rpm - Ver: 2.028 --
Upgrade check
Fetch: HTTP

-- module: Proc-Daemon-0.03.tar.gz --
tarball: No such file or directory at ./cpan2rpm line 1230.
-- Done --

这样用却可以

 cpan2rpm  Proc::Daemon

或者

 cpan2rpm http://.../Proc-Daemon-0.03.tar.gz

不过有一些还是没有rpm包




相关文章

相关软件