#!/usr/bin/make -f

# This file is sourced by debhelper to determine how to build the package.
# See https://www.debian.org/doc/manuals/maint-guide/dother.en.html#rules for more details.

# export DH_VERBOSE=1
# export DEB_BUILD_OPTIONS = noparallel

include /usr/share/dpkg/buildflags.mk

export PREFIX=/usr
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

# VERSION := $(shell dpkg-parsechangelog --show-field Version)
# NAME := $(shell dpkg-parsechangelog --show-field Source)
# DEBPKGNAME := ${NAME}-${VERSION}

%:
	dh $@

override_dh_auto_build:
	dh_auto_build -- meson

override_dh_auto_install:
	dh_auto_install --destdir=debian/tmp
