#!/usr/bin/make -f
# -*- makefile -*-
#
# percona-valkey-bundle is a dependency-only meta-package: there is nothing to
# configure, build, test, or install. debhelper produces an empty binary
# package carrying only the Depends from debian/control.

%:
	dh $@

override_dh_auto_configure:
override_dh_auto_build:
override_dh_auto_test:
override_dh_auto_install:

# Build the .deb with xz (not the zstd default on Ubuntu jammy+/Debian bookworm+):
# the Percona repo's reprepro can't read zstd-compressed control.tar/data.tar.
override_dh_builddeb:
	dh_builddeb -- -Zxz
