#!/usr/bin/make -f
# -*- makefile -*-

#export DH_VERBOSE=1
export DH_OPTIONS

%:
	dh $@ -D Linux --with python3

override_dh_auto_configure:
	dh_auto_configure -- \
		-DBUILD_GL=OFF \
		-DBUILD_DRIVE=OFF \
		-DBUILD_DRIVE10=OFF \
		-DBUILD_DEMO=OFF

override_dh_auto_install:
	dh_auto_install
	cd Linux/python && python3 setup.py install \
		--root=../../debian/python3-rtimulib \
		--install-layout=deb
