#!/usr/bin/make -f

%:
	dh $*

override_dh_auto_configure:
	autoreconf -fi
	dh_auto_configure -- \
		--disable-beep_media_player_plugin \
		--disable-old-plugin \
		--disable-new-plugin

override_dh_clean:
	dh_clean
	find -name Makefile.in -exec $(RM) {} \;
	$(RM) config.guess config.sub
	$(RM) configure aclocal.m4
	$(RM) depcomp install-sh ltconfig ltmain.sh missing mkinstalldirs INSTALL

override_dh_installdocs:
	dh_installdocs --all
