1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#!/usr/bin/make -f
%:
dh $@ --with elpa
override_dh_auto_clean:
@echo Skip upstream Makefile that uses Eldev.
override_dh_auto_build:
@echo Skip upstream Makefile that uses Eldev.
override_dh_auto_install:
@echo Skip upstream Makefile that uses Eldev.
override_dh_elpa_test:
# Adapted from scripts/run_test.sh
emacs --batch -q \
--eval "(add-to-list 'load-path \"$(readlink -f .)\")" \
--eval "(add-to-list 'load-path \"$(readlink -f .)/test\")" \
--eval "(setq debug-on-error t)" \
--eval "(setq max-lisp-eval-depth 1600)" \
-l test/swift-mode-test.el \
-f swift-mode:run-test
|