#!/usr/bin/make -f

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@ --with kf5

override_dh_auto_configure:
	dh_auto_configure -Skf5 -- -DBUILD_TESTING=OFF

override_dh_auto_install:
	dh_auto_install
	rm -rf debian/rocs/usr/include/
	find debian/rocs -name '*.so' -type l -delete

.PHONY: override_dh_auto_test
