#!/usr/bin/make -f

%:
	dh $@

override_dh_clean:
	tar -cf external_resources.tar.gz fix-config-path.patch
	rm fix-config-path.patch

override_dh_auto_clean:

override_dh_auto_configure:
	tar -xf external_resources.tar.gz

	patch -p1 < fix-config-path.patch
	dh_auto_configure

override_dh_auto_build:


override_dh_install:
	dh_install lldap-cli usr/bin
