rules 416 B

12345678910111213141516171819202122
  1. #!/usr/bin/make -f
  2. # Uncomment this to turn on verbose mode.
  3. #export DH_VERBOSE=1
  4. %:
  5. dh $@ --buildsystem=python_distutils --with=python2
  6. override_dh_auto_build:
  7. $(MAKE) doc
  8. $(MAKE) tmpls
  9. dh_auto_build
  10. override_dh_auto_install:
  11. $(MAKE) DESTDIR=$(CURDIR)/debian/spectacle install-data
  12. dh_auto_install
  13. override_dh_auto_clean:
  14. $(MAKE) clean
  15. rm -rf spectacle/__version__.py spectacle.egg-info
  16. dh_auto_clean