/ Published in: Makefile
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.
I always use the I parameter with Perl for use the more updated version of the modules in the debug process.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
# 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