#!/usr/bin/make -f
# Copyright © 2022 IOhannes m zmölnig <umlaeute@debian.org>

export DEB_BUILD_MAINT_OPTIONS=hardening=+all

%:
	dh $@

override_dh_auto_build:
	dh_auto_build --buildsystem=pd_lib_builder -- \
		FFTW3_CFLAGS=$(shell pkg-config --cflags fftw3) \
		FFTW3_LIBS=$(shell pkg-config --libs fftw3) \
		FFTW3F_CFLAGS=$(shell pkg-config --cflags fftw3f) \
		FFTW3F_LIBS=$(shell pkg-config --libs fftw3f) \
		$(empty)

pkglibdir = /usr/lib/pd/extra
execute_after_dh_auto_install:
# replace license file with link to the Debian license file
	rm -f -- $(CURDIR)/debian/*/$(pkglibdir)/*/LICENSE.txt

DEB_COPYRIGHT_CHECK_IGNORE_REGEX = \
        debian/.*
# licensecheck v1
.PHONY: licensecheck
licensecheck:
	licensecheck \
		-i "^($(DEB_COPYRIGHT_CHECK_IGNORE_REGEX))$$" \
		--check '.*' --recursive --deb-machine --lines 0 * \
		> debian/copyright_newhints
	cmp debian/copyright_hints debian/copyright_newhints \
		&& rm debian/copyright_newhints
