1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/make -f
DEB_PYTHON_SYSTEM = pycentral
ifneq (,$(DEB_MAINTAINER_MODE))
# Enable stuff not policy compliant (eg. unsuitable for build daemons)
DEB_COPYRIGHT_CHECK_STRICT = yes
endif
include debian/cdbs/1/rules/copyright-check.mk
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk
DEB_COMPRESS_EXCLUDE := .py .pdf .form
USCAN_DESTDIR := $(CURDIR)
get-orig-source:
uscan --force-download --verbose --destdir $(USCAN_DESTDIR)
|