#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
export DH_VERBOSE=1

%:
	dh $@

override_dh_auto_configure:
	cp README.md debian/README_mod_admin_rest.md

override_dh_install:
	dh_install
	find debian/prosody-modules-admin-rest/ -type f -name \*.lua -exec chmod 644 {} \;

override_dh_auto_clean:
	rm -f debian/README_mod_*.*
