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

export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@ --with pkgkde_symbolshelper

override_dh_auto_build:
	sed -i s/arch=!armel/optional=meh/ debian/libkf5activities5.symbols 
	dh_auto_build

override_dh_auto_clean:
	dh_auto_clean
	sed -i s/optional=meh/arch=!armel/ debian/libkf5activities5.symbols 

override_dh_auto_configure:
	dh_auto_configure -- -DBUILD_QCH=ON
