1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
#!/usr/bin/make -f
# -*- makefile -*-
%:
dh --with quilt $@
inosync:
cp inosync.py inosync
inosync.1: inosync
help2man -N ./inosync -o inosync.1 -n "$(shell sed -n '/^Description: / {s/Description: //; p; }' debian/control)"
override_dh_install: inosync
$(shell echo $@ | sed 's/^override_//')
override_dh_installman: inosync.1
$(shell echo $@ | sed 's/^override_//')
get-orig-source:
uscan --repack --force $(EXTRA_USCAN_OPTS)
.PHONY: get-orig-source override_dh_installman override_dh_install
|