File: rules

package info (click to toggle)
inosync 0.2.3%2Bgit20120321-0.2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 120 kB
  • ctags: 58
  • sloc: python: 337; sh: 17; makefile: 13
file content (22 lines) | stat: -rwxr-xr-x 495 bytes parent folder | download
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 $@

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