#!/usr/bin/make -f

%:
	dh $@

DEBIAN_VERSION=$(shell lsb_release -c | cut -f2)

ifeq ($(DEBIAN_VERSION),trusty|vivid|wily|wheezy|jessie)
	ROBOTO_DIR := $(shell dirname `readlink -f /usr/share/fonts/truetype/roboto/Roboto-Regular.ttf`)
else
	ROBOTO_DIR := $(shell dirname `readlink -f /usr/share/fonts/truetype/roboto/hinted/Roboto-Regular.ttf`)
endif

override_dh_auto_configure:
	sed 's|@ROBOTO_DIR@|$(ROBOTO_DIR)|g' \
		debian/links.in > debian/links

override_dh_auto_build:

override_dh_auto_clean:
