Revision 653031376561 () - Diff

Link to this snippet: https://friendpaste.com/3ytvmENMDznzAXfRiu9Sdl
Embed:
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
export DH_COMPAT=4
export DH_OPTIONS

DEB_PYTHON_SYSTEM := pysupport

include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk

PYDEF=$(shell pyversions -d)
PYVERS=$(shell pyversions -r)

DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)

switch-arch:
sed -e 's/Architecture: any/Architecture: ${DEB_BUILD_ARCH}/g' debian/control > control.dummy
mv control.dummy debian/control

build: build-stamp
build-stamp:
dh_testdir
set -e; \
for python in $(PYVERS); do \
$$python setup.py build; \
done
touch build-stamp

clean::
dh_testdir
for python in $(PYVERS); do \
$$python setup.py clean; \
done
rm -rf build-stamp build
dh_clean

install: build
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
set -e; \
for python in $(PYVERS); do \
$$python setup.py install --root=debian/python-midgard2; \
done
# nothing to do
binary-indep: DH_OPTIONS=-i
binary-indep:

binary-indep: DH_OPTIONS=-a
binary-arch: install
dh_testdir
dh_testroot
dh_installdocs
dh_installchangelogs
dh_strip
dh_compress
dh_fixperms
dh_installdeb
dh_makeshlibs
dh_shlibdeps -L libmidgard9.3
dh_gencontrol
dh_md5sums
dh_builddeb

binary: switch-arch binary-indep binary-arch
.PHONY: switch-arch binary binary-arch binary-indep clean build