File: rules

package info (click to toggle)
python-ntlm 1.0.1-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 168 kB
  • ctags: 150
  • sloc: python: 1,140; makefile: 9
file content (18 lines) | stat: -rwxr-xr-x 428 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/make -f
# -*- makefile -*-

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

DESTDIR=$(CURDIR)/debian/python-ntlm

override_dh_installexamples:
	mkdir -p $(DESTDIR)/usr/share/doc/python-ntlm/examples/
	mv -f $(DESTDIR)/usr/bin/*example* \
		$(DESTDIR)/usr/share/doc/python-ntlm/examples/
	dh_installexamples

%:
	dh $@ --with python2 --buildsystem=python_distutils

.PHONY: override_dh_installexamples