From d7200d96d5b90bcd0013c84ec1b053acbcca86c9 Mon Sep 17 00:00:00 2001 From: nima Date: Tue, 31 Mar 2009 11:42:38 +0000 Subject: Reverting recent (pointless) change. git-svn-id: svn://svn.autonomy.net.au/python-dmidecode@180 abc39116-655e-4be6-ad55-d661dc543056 --- debian/rules | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100755 debian/rules (limited to 'debian/rules') diff --git a/debian/rules b/debian/rules new file mode 100755 index 0000000..5e4d832 --- /dev/null +++ b/debian/rules @@ -0,0 +1,70 @@ +#!/usr/bin/make -f + +export DH_VERBOSE=0 +PACKAGE = $(shell dh_listpackages) +PYVERS = $(shell pyversions -vr) + +################################################################################ +#. Build +build: build-stamp +build-stamp: $(PYVERS:%=build-ext-%) $(PYVERS:%=build-dbg-ext-%) + dh_testdir + touch $@ +build-ext-%: + python$* src/setup.py build + touch $@ +build-dbg-ext-%: + python$*-dbg src/setup-dbg.py build + touch $@ + +################################################################################ +#. Install +install: install-stamp + dh_testdir + dh_testroot + dh_installdirs + dh_installchangelogs + dh_installdocs + dh_installexamples + dh_install + dh_pycentral + dh_installman +install-stamp: build-stamp $(PYVERS:%=install-ext-%) $(PYVERS:%=install-dbg-ext-%) +install-ext-%: + python$* src/setup.py install --root $(CURDIR)/debian/python-dmidecode + touch $@ +install-dbg-ext-%: + python$*-dbg src/setup-dbg.py install --root $(CURDIR)/debian/python-dmidecode-dbg + #find $(CURDIR)/debian/python-dmidecode-dbg/usr/lib/python$*/ ! -type d ! -name '*_d\.so' -delete + #find $(CURDIR)/debian/python-dmidecode-dbg/usr/lib/python$*/ -depth -empty -delete + touch $@ + +################################################################################ +#. Binary +binary: binary-indep binary-arch +binary-indep: +binary-arch: build install + dh_testdir + dh_testroot + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + + +################################################################################ +#. Clean +clean: + dh_testdir + dh_testroot + $(MAKE) -f Makefile clean + test $(CL_AGE) -le $(CACHE_AGE) || dh_clean + dh_clean build-stamp install-stamp \ + $(PYVERS:%=install-ext-%) $(PYVERS:%=build-ext-%) \ + $(PYVERS:%=install-dbg-ext-%) $(PYVERS:%=build-dbg-ext-%) + +.PHONY: build clean binary-indep binary-arch binary install -- cgit