| 1 |
#!/usr/bin/make -f
|
| 2 |
# debian/rules for probalign
|
| 3 |
# Andreas Tille <tille@debian.org>
|
| 4 |
# LGPL-3
|
| 5 |
|
| 6 |
# Uncomment this to turn on verbose mode.
|
| 7 |
#export DH_VERBOSE=1
|
| 8 |
|
| 9 |
VERSION := $(shell dpkg-parsechangelog | sed -ne 's/^Version: \(\([0-9]\+\):\)\?\(.*\)-.*/\3/p')
|
| 10 |
PKG := $(shell dpkg-parsechangelog | sed -n 's/^Source: //p')
|
| 11 |
|
| 12 |
%:
|
| 13 |
dh $@ --with quilt
|
| 14 |
|
| 15 |
override_dh_auto_install:
|
| 16 |
help2man --name="Align sequences in MFAFILE(s) and print result to standard output" \
|
| 17 |
--no-discard-stderr \
|
| 18 |
--version-string=$(VERSION) \
|
| 19 |
--help-option=" " \
|
| 20 |
--no-info \
|
| 21 |
$(CURDIR)/probalign > $(CURDIR)/debian/$(PKG)/usr/share/man/man1/probalign.1
|