#!/usr/bin/make -f
export DH_VERBOSE=1
export PYBUILD_NAME=rospkg

%:
	dh $@ --with python3 --buildsystem=pybuild

override_dh_auto_install:
	SKIP_PYTHON_SCRIPTS=1 python3 setup.py install \
	  --root=$(CURDIR)/debian/python3-rospkg-modules \
	  --install-layout=deb --no-compile -O0
	SKIP_PYTHON_MODULES=1 python3 setup.py install \
	  --root=$(CURDIR)/debian/python3-rospkg \
	  --install-layout=deb --no-compile -O0
