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

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

%:
	dh  $@ --with python2

override_dh_auto_install:
	true

override_dh_install:
	dh_install -XLICENSE -X*.sln -X*proj
	for f in $$(ls debian/google-mock/usr/bin/*.py); do mv $$f $$(echo $$f | sed s/\.py//); done
	chmod a-x debian/google-mock/usr/share/gmock/cpp/*

