1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk
DEB_COMPRESS_EXCLUDE := .py .pdf
DEB_PYTHON_INSTALL_ARGS_ALL += --single-version-externally-managed
DEB_DESTDIR = $(CURDIR)/debian/python-chaco
PYSHARED = $(DEB_DESTDIR)/usr/share/pyshared
PYLIBS = $(DEB_DESTDIR)/usr/lib/python*
EXAMPLES = $(DEB_DESTDIR)/usr/share/doc/python-chaco
install/python-chaco::
find $(DEB_DESTDIR) -name "*LICENSE*" -delete
dh_numpy
binary-predeb/python-chaco::
find $(EXAMPLES) -type f -print0 | xargs -0 sed -i '/^#!/d'
find $(PYLIBS) -type f -print0 | xargs -0 chmod 644
find $(EXAMPLES) -type f -print0 | xargs -0 chmod 644
find $(EXAMPLES) -name "*LICENSE*" -delete
get-orig-source:
-uscan --force-download --rename
|