File: rules

package info (click to toggle)
mpmath 0.17-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 4,080 kB
  • sloc: python: 41,095; makefile: 42
file content (67 lines) | stat: -rwxr-xr-x 1,550 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/make -f
# -*- makefile -*-

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

build: build-stamp
build-stamp:
	dh_testdir

	python setup.py build;

ifeq (,$(findstring notest,$(DEB_BUILD_OPTIONS)))
	-python mpmath/tests/runtests.py -strict -py -local
endif

	( cd doc ; PYTHONPATH=../build/lib/ python build.py )
	
	touch $@

clean:
	dh_testdir
	dh_testroot

	[ ! -d build ] || rm -rf build

	python setup.py clean;

	rm -rf doc/build

	find . -name '*\.py[co]' -delete

	dh_clean build-stamp patch-stamp

install: build
	dh_testdir
	dh_testroot
	dh_installdirs

	# Add here commands to install the package into debian/python-mpmath.
	python setup.py install --root=debian/python-mpmath --install-layout=deb;

	# move generated documentation under subdir to keep doc/ dir clean
	cp -arp doc/build/* $(CURDIR)/debian/python-mpmath-doc/usr/share/doc/python-mpmath-doc/html/
	cp -arp doc/source/* $(CURDIR)/debian/python-mpmath-doc/usr/share/doc/python-mpmath-doc/txt/


# Build architecture-independent files here.
binary-indep: build install
	dh_testdir
	dh_testroot
	dh_installchangelogs	CHANGES
	dh_installdocs
	dh_installexamples	-ppython-mpmath-doc demo/*
	dh_pysupport
	dh_compress		-X.py -X.js -Xobjects.inv
	ln -sf /usr/share/javascript/jquery/jquery.js \
		$(CURDIR)/debian/python-mpmath-doc/usr/share/doc/python-mpmath-doc/html/_static/jquery.js
	dh_link
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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