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
|
#!/usr/bin/make -f
# Verbose mode
#export DH_VERBOSE=1
clean:
dh_testdir
dh_testroot
rm -f build-stamp install-stamp
rm -rf build
find boto/ -name *.pyc | xargs rm -f
dh_clean
build: build-arch build-indep
build-arch: build-stamp
build-indep: build-stamp
build-stamp:
dh_testdir
python setup.py build
touch build-stamp
install: build-stamp
dh_testdir
dh_installdirs
python setup.py install --root $(CURDIR)/debian/python-boto \
--install-scripts usr/share/doc/python-boto/examples/ \
--install-layout=deb
for f in `find $(CURDIR)/debian/python-boto -name \*.py`; do \
sed -e '\,^#!/usr/bin/env python,d' < $$f > $$f.tmp; \
mv $$f.tmp $$f; \
done
touch install-stamp
binary-arch:
binary-indep: install
dh_installdocs
dh_installchangelogs
dh_compress
dh_fixperms
dh_python2
dh_gencontrol
dh_installdeb
dh_md5sums
dh_builddeb
binary: binary-arch binary-indep
.PHONY: build clean binary-indep binary-arch binary
|