#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

PYTHON3S:=$(shell py3versions -vr)
SAMPLESDIR=$(CURDIR)/debian/python3-googleapi-samples/usr/share/doc/python3-googleapi-samples/examples/

export PYBUILD_NAME=googleapi

override_dh_auto_install:
	dh_auto_install
	set -e && for pyvers in $(PYTHON3S); do \
		python$$pyvers setup.py install --install-layout=deb \
			--root $(CURDIR)/debian/python3-googleapi; \
	done

override_dh_fixperms:
	dh_fixperms
	chmod a-x $(SAMPLESDIR)/storage_serviceaccount_appengine/listing.xsl

override_dh_clean:
	dh_clean -O--buildsystem=pybuild
	rm -rf $(CURDIR)/build

override_dh_auto_test: 
	@echo Self-testing is disabled.

%:
	dh $@ --buildsystem=pybuild --with python3

.PHONY: override_dh_auto_install override_dh_fixperms override_dh_clean \
	override_dh_auto_test
