#!/usr/bin/make -f
include /usr/share/dpkg/default.mk

ifeq ($(shell $(call dpkg_vendor_derives_from,Ubuntu)),yes)
UBUNTU_RECOMMENDS=update-manager-core
endif

%:
	dh "$@"

override_dh_auto_build:
	cd po; make

override_dh_installinit:
	dh_installinit --no-start

override_dh_installsystemd:
	dh_installsystemd --no-start

override_dh_gencontrol:
	dh_gencontrol -- -VUbuntu:Recommends=$(UBUNTU_RECOMMENDS)
