带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.
# Variables PERL_BIN=/usr/bin/perl PERL=$(PERL_BIN) -Ilib DEBUILD=/usr/bin/debuild # Targets Build: Build.PL $(PERL) Build.PL installdirs=vendor build: Build $(PERL) Build clean: Build $(PERL) Build distclean test: build $(PERL) Build test install: test $(PERL) Build install destdir=$(DESTDIR) deb: debian/rules $(DEBUILD) -rfakeroot -uc -us -sa 2>&1 | tee debuild.log
以上是关于带debian包的perl模块模板的主要内容,如果未能解决你的问题,请参考以下文章