a | b | |
---|
| 0 | + | export DH_COMPAT=4 |
---|
| 0 | + | export DH_OPTIONS |
---|
| 0 | + | |
---|
| 0 | + | DEB_PYTHON_SYSTEM := pysupport |
---|
| 0 | + | |
---|
| 0 | + | include /usr/share/cdbs/1/rules/debhelper.mk |
---|
| 0 | + | include /usr/share/cdbs/1/class/python-distutils.mk |
---|
| 0 | + | |
---|
| 0 | + | PYDEF=$(shell pyversions -d) |
---|
| 0 | + | PYVERS=$(shell pyversions -r) |
---|
| 0 | + | |
---|
| 0 | + | DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH) |
---|
| 0 | + | |
---|
| 0 | + | switch-arch: |
---|
| 0 | + | sed -e 's/Architecture: any/Architecture: ${DEB_BUILD_ARCH}/g' debian/control > control.dummy |
---|
| 0 | + | mv control.dummy debian/control |
---|
| 0 | + | |
---|
| 0 | + | build: build-stamp |
---|
| 0 | + | build-stamp: |
---|
| 0 | + | dh_testdir |
---|
| 0 | + | set -e; \ |
---|
| 0 | + | for python in $(PYVERS); do \ |
---|
| 0 | + | $$python setup.py build; \ |
---|
| 0 | + | done |
---|
| 0 | + | touch build-stamp |
---|
| 0 | + | |
---|
| 0 | + | clean:: |
---|
| 0 | + | dh_testdir |
---|
| 0 | + | for python in $(PYVERS); do \ |
---|
| 0 | + | $$python setup.py clean; \ |
---|
| 0 | + | done |
---|
| 0 | + | rm -rf build-stamp build |
---|
| 0 | + | dh_clean |
---|
| 0 | + | |
---|
| 0 | + | install: build |
---|
| 0 | + | dh_testdir |
---|
| 0 | + | dh_testroot |
---|
| 0 | + | dh_clean -k |
---|
| 0 | + | dh_installdirs |
---|
| 0 | + | |
---|
| 0 | + | set -e; \ |
---|
| 0 | + | for python in $(PYVERS); do \ |
---|
| 0 | + | $$python setup.py install --root=debian/python-midgard2; \ |
---|
| 0 | + | done |
---|
| 0 | + | |
---|
| 0 | + | # nothing to do |
---|
| 0 | + | binary-indep: DH_OPTIONS=-i |
---|
| 0 | + | binary-indep: |
---|
| 0 | + | |
---|
| 0 | + | binary-indep: DH_OPTIONS=-a |
---|
| 0 | + | binary-arch: install |
---|
| 0 | + | dh_testdir |
---|
| 0 | + | dh_testroot |
---|
| 0 | + | dh_installdocs |
---|
| 0 | + | dh_installchangelogs |
---|
| 0 | + | dh_strip |
---|
| 0 | + | dh_compress |
---|
| 0 | + | dh_fixperms |
---|
| 0 | + | dh_installdeb |
---|
| 0 | + | dh_makeshlibs |
---|
| 0 | + | dh_shlibdeps -L libmidgard9.3 |
---|
| 0 | + | dh_gencontrol |
---|
| 0 | + | dh_md5sums |
---|
| 0 | + | dh_builddeb |
---|
| 0 | + | |
---|
| 0 | + | binary: switch-arch binary-indep binary-arch |
---|
| 0 | + | .PHONY: switch-arch binary binary-arch binary-indep clean build |
---|
| 0 | + | |
---|
... | |
---|