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
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
PACKAGE_NAME=python-enchant
MODULE_NAME=enchant
PYVERS=$(shell pyversions -vr)
# try to detect libenchant package name
LIBPACKAGENAME=$(shell dpkg -S `python -c 'from ctypes.util import find_library; print find_library("enchant")'` | grep -o ^libenchant[^:]* | head -n 1)
ifneq (,$(findstring enchant,$(LIBPACKAGENAME)))
LIBPACKAGENAME=libenchant1c2a
endif
include /usr/share/quilt/quilt.make
clean: unpatch
dh_testdir
dh_testroot
rm -rf dist build
find . -name *\.py[co] -exec rm {} \;
dh_clean *-stamp
build: patch
install: patch $(PYVERS:%=install-python-%)
echo "shlibs:Depends=${LIBPACKAGENAME}" >> debian/python-enchant.substvars
touch $@
install-python-%:
python$* setup.py install \
--single-version-externally-managed \
--root debian/${PACKAGE_NAME}
binary-arch:
binary-indep: build install
dh_testdir -i
dh_testroot -i
dh_installchangelogs -i
dh_installdocs -i
dh_pysupport -i
dh_compress -i -X.py
dh_fixperms -i
dh_installdeb -i
dh_gencontrol -i
dh_md5sums -i
dh_builddeb -i -- -Z bzip2
binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install
|