#!/usr/bin/make -f
P= libmodule-cpants-analyse-perl
D= $(CURDIR)/debian/$P
%:
dh --with quilt $@
override_dh_auto_test:
dh_auto_test -- TEST_FILES="$(shell ls t/*.t | grep -v analyse | grep -v t/calc_test_yaml_meta.t | grep -v t/unpack | grep -v t/calc.t | grep -v t/generated_files.t | grep -v t/moose_as_strict.t | grep -v t/plugin_manifest.t)"
override_dh_auto_install:
dh_auto_install
mv $D/usr/bin/cpants_lint.pl $D/usr/bin/cpants_lint
mv $D/usr/share/man/man1/cpants_lint.pl.1p $D/usr/share/man/man1/cpants_lint.1p
|