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
# -*- mode: makefile; coding: utf-8 -*-
# Copyright © 2008 Jonas Smedegaard <dr@jones.dk>
# NB! Local CDBS tweaks in use. More info in README.cdbs-tweaks
DEB_PYTHON_SYSTEM = pycentral
ifneq (,$(DEB_MAINTAINER_MODE))
# Enable stuff not policy compliant (eg. unsuitable for build daemons)
DEB_COPYRIGHT_CHECK_STRICT = yes
DEB_AUTO_UPDATE_DEBIAN_CONTROL = yes
endif
include debian/cdbs/1/rules/copyright-check.mk
#include /usr/share/cdbs/1/rules/patchsys-quilt.mk
include debian/cdbs/1/class/python-sugar.mk
include debian/cdbs/1/rules/buildinfo.mk
DEB_INSTALL_DOCS_sugar-sharedstate-classes += sharedstate/README
clean::
find . -name "*.xo" -print0 | xargs -r0 rm -f
# Resolve, cleanup and apply CDBS-declared dependencies
include debian/cdbs/1/rules/package-relations.mk
|