#!/usr/bin/make -f
# -*- makefile -*-
#
export DH_VERBOSE=1
DESTDIR=debian/obs-service-tar-scm

%:
	dh $@ --with python3

# Skip the Makefile and just rely on the python debhelper
override_dh_auto_build:

# Skip tests as slow and don't detect python on debian
override_dh_auto_test:

override_dh_auto_install:
	dh_auto_install -- COMPILED_PYTHON=false WITH_GBP=1 install
