File: rules

package info (click to toggle)
copyright-update 2016.1018-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 160 kB
  • sloc: perl: 436; makefile: 132
file content (18 lines) | stat: -rwxr-xr-x 323 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/make -f

PACKAGE = copyright-update
DOCDIR  = debian/$(PACKAGE)/usr/share/doc/$(PACKAGE)/doc

override_dh_auto_install:
	$(MAKE) prefix=/usr \
		DESTDIR=debian/$(PACKAGE) \
		INSTALL_OBJS_DOC="" \
		DOCDIR=$(DOCDIR) \
		install
	# Contains only copies of manual pages
	rm -rf $(DOCDIR)

%:
	dh $@

# End of file