#!/usr/bin/make -f

#export DH_VERBOSE=1

# No checks to run, so disable check to suppress warnings
export DEB_BUILD_OPTIONS=nocheck

# Because this package doesn't contain any compiled binaries we control
# the installation simply with a .install file.

# Override the default dh_builddeb target to use xz compression ,
# otherwise when using Ubuntu for packaging .zst will be used which isn't supported in bullseye.
override_dh_builddeb:
	dh_builddeb -- -Zxz

# Note: dh_installsystemd is automatically called by dh.
# This helper will search for <package>.service files in debian/
# and handles also adding logic in install scripts

%:
	dh $@
