#!/usr/bin/make -f
#
# python-pyrss2gen

%:
	dh $@ --with python2,python3

override_dh_auto_build:
	for py in $(shell pyversions -vr) $(shell py3versions -vr); do \
		python$$py setup.py build --build-base=build$$py; \
	done

override_dh_auto_install:
	python setup.py install --no-compile -O0 --install-layout=deb \
		--root $(CURDIR)/debian/python-pyrss2gen && \
	python3 setup.py install --no-compile -O0 --install-layout=deb \
		--root $(CURDIR)/debian/python3-pyrss2gen

override_dh_auto_clean:
	dh_clean
	for py in $(shell pyversions -vr) $(shell py3versions -vr); do \
		python$$py setup.py clean --build-temp=build && \
		python$$py setup.py clean --build-temp=build$$py; \
	done
	find $(CUDIR) -name "*.pyc" -delete

