rules 391 B

12345678910111213141516171819
  1. #!/usr/bin/make -f
  2. export DH_PYCENTRAL=nomove
  3. DEB_PYTHON_SYSTEM=pycentral
  4. include /usr/share/cdbs/1/rules/debhelper.mk
  5. include /usr/share/cdbs/1/class/python-distutils.mk
  6. ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
  7. common-build-arch common-build-indep:: debian/stamp-check
  8. debian/stamp-check:
  9. $(MAKE) check
  10. touch $@
  11. clean::
  12. rm -f debian/stamp-check
  13. rm -f dulwich/*.so
  14. endif