#!/bin/sh

set -e
pkg=`dpkg-parsechangelog | sed -n 's/^Source: //p'`
for file in build align inspect
do
	${pkg}-${file}-l -h >/dev/null 2>&1
	${pkg}-${file}-s -h >/dev/null 2>&1
done
