File: rules

package info (click to toggle)
splitpatch 1.0%2B20160815%2Bgit13c5941-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 100 kB
  • ctags: 55
  • sloc: ruby: 176; makefile: 56
file content (23 lines) | stat: -rwxr-xr-x 394 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
23
#!/usr/bin/make -f

PACKAGE = splitpatch

man:
	$(MAKE) -C debian -f pod2man.mk PACKAGE=$(PACKAGE) makeman

override_dh_installchangelogs:
	# Git log from upstream repository
	dh_installchangelogs debian/upstream.changelog

override_dh_installman: man
	dh_installman

override_dh_auto_install:
	install -D -m 755 *.rb debian/$(PACKAGE)/usr/bin/splitpatch

%:
	dh $@

.PHONY: man

# End of file