#!/usr/bin/make -f
# Minimal dh packaging — installs via package/install.sh into debian/dve
export DH_VERBOSE = 1

%:
	dh $@

override_dh_auto_build:
	@true

override_dh_auto_install:
	DESTDIR=$(CURDIR)/debian/dve PREFIX=/usr \
	  DVE_SRC=$(CURDIR)/../.. DVE_SKIP_PIP=1 \
	  bash $(CURDIR)/../install.sh
	# When building from package/debian with source at repo root:
	# set DVE_SRC appropriately in the CI recipe.

override_dh_auto_test:
	@true
