#!/usr/bin/make -f
# debian/rules for probalign
# Andreas Tille <tille@debian.org>
# LGPL-3

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

VERSION := $(shell dpkg-parsechangelog | sed -ne 's/^Version: \(\([0-9]\+\):\)\?\(.*\)-.*/\3/p')
PKG := $(shell dpkg-parsechangelog | sed -n 's/^Source: //p')

%:
	dh $@

override_dh_auto_install:
	help2man --name="Align sequences in MFAFILE(s) and print result to standard output" \
	         --no-discard-stderr \
	         --version-string=$(VERSION) \
	         --help-option=" " \
	         --no-info \
                 $(CURDIR)/probalign > $(CURDIR)/debian/$(PKG)/usr/share/man/man1/probalign.1
