带debian包的perl模块模板

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了带debian包的perl模块模板相关的知识,希望对你有一定的参考价值。

This is the template for a basic project in Perl language with a minimal Debian package build.
I always use the I parameter with Perl for use the more updated version of the modules in the debug process.
  1. # Variables
  2. PERL_BIN=/usr/bin/perl
  3. PERL=$(PERL_BIN) -Ilib
  4. DEBUILD=/usr/bin/debuild
  5.  
  6. # Targets
  7. Build: Build.PL
  8. $(PERL) Build.PL installdirs=vendor
  9.  
  10. build: Build
  11. $(PERL) Build
  12.  
  13. clean: Build
  14. $(PERL) Build distclean
  15.  
  16. test: build
  17. $(PERL) Build test
  18.  
  19. install: test
  20. $(PERL) Build install destdir=$(DESTDIR)
  21.  
  22. deb: debian/rules
  23. $(DEBUILD) -rfakeroot -uc -us -sa 2>&1 | tee debuild.log

以上是关于带debian包的perl模块模板的主要内容,如果未能解决你的问题,请参考以下文章

程序猿哥哥带你快速入门Flask框架

续:纠正:ubuntu7.04可以安装,而且完美的安装 ! for《Oracle-10.2.0.1,打补丁10.2.0.5:在 debian 版本4不含4以上,及 ubuntu 7.04不含(代码片段

26-Perl 包和模块

Perl 最佳实践(节选) --- 07

Perl DATA 文件句柄在读取时为空

python 一个终端代码片段,在mac上生成可启动的usb live CD,以运行类似ubuntu或debian的内容。