File: rules

package info (click to toggle)
libbuffy-bindings 0.16
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch
  • size: 132 kB
  • ctags: 27
  • sloc: python: 187; perl: 131; makefile: 33; sh: 16
file content (50 lines) | stat: -rwxr-xr-x 1,073 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/make -f

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

PERL_ARCHLIB := $(shell perl -MConfig -e 'print $$Config{vendorarch}')

%:
	dh $@ --with python2

override_dh_auto_configure:
	dh_auto_configure -Dperl
	dh_auto_configure -Dpython

override_dh_auto_build:
	dh_auto_build -Dperl
	dh_auto_build -Dpython

override_dh_auto_install:
	dh_auto_install -Dperl
	dh_auto_install -Dpython

override_dh_install:
	dh_install -plibbuffy-perl $(PERL_ARCHLIB)
	dh_install -ppython-buffy

override_dh_auto_clean:
	dh_auto_clean -Dperl
	dh_auto_clean -Dpython
	dh_auto_clean
	rm -f python/buffy_wrap.cpp python/Buffy.py

# Thanks Stefano Rivera for the python test example
override_dh_auto_test:
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
	cd tests && ./test.pl

	set -e; cd tests; \
	for ver in $(shell pyversions -vr); do \
		PYTHONPATH=$$(ls -d $$(readlink -f ../python/build/lib.*-$$ver)) \
			python$$ver test.py; \
	done
endif

# Personal convenience rules
vercheck:
	debian/vercheck > /dev/null

debsrc: vercheck
	git-buildpackage -S -us -uc