#!/usr/bin/make -f

DPKG_EXPORT_BUILDFLAGS = 1
include /usr/share/dpkg/default.mk

%:
	dh $@ --without=single-binary

override_dh_auto_configure:
	dh_auto_configure -- --without-pkcs11 --without-qrypt --without-rtlsdr

override_dh_installsystemd:
	cp -a rngd.service debian/rng-tools.rngd.service
	dh_installsystemd --name rngd

override_dh_installinit:
	dh_installinit --name=rngd
