#!/usr/bin/make -f

%:
	dh $@ --with autoreconf

override_dh_auto_configure:
	dh_auto_configure -- \
		--enable-static=no

override_dh_auto_install:
	dh_auto_install
	find debian/tmp/usr/lib -name '*.la' -delete

override_dh_auto_test:

override_dh_makeshlibs:
	dh_makeshlibs -a -V \
		-Xaudio-plugins \
		-Xcontainer-plugins \
		-Xoptions-plugins \
		-Xsubp-plugins \
		-Xvideo-plugins

