1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
%:
dh $@
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS) $(DEB_BUILD_PROFILES)))
$(CURDIR)/bin/cmd.js $(CURDIR)/example/async.js
$(CURDIR)/bin/cmd.js $(CURDIR)/example/main.js
tap -R spec test/cmd.js
else
@echo '**********************************************************'
@echo 'Skip test suite '
@echo '**********************************************************'
endif
override_dh_fixperms:
dh_fixperms
chmod +x $(CURDIR)/debian/node-brfs/usr/lib/nodejs/brfs/bin/cmd.js
|