#!/usr/bin/make -f

%:
	dh $@ --buildsystem=golang --with golang

override_dh_auto_install:
	dh_auto_install -- --no-binaries

execute_after_dh_fixperms:
	find debian/golang-github-bep-golibsass-dev/usr/share/gocode/src/github.com/bep/golibsass/internal \
		-type f -exec chmod 644 '{}' \;
