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
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
PYVERS=$(shell pyversions -vr)
DEBIAN_DIR := $(shell echo ${MAKEFILE_LIST} | awk '{print $$1}' | xargs dirname )
%:
dh $@ --with python2,autoreconf
override_dh_auto_clean:
( cd libconcord/ && [ ! -f Makefile ] || $(MAKE) clean )
rm -f libconcord/Makefile libconcord/config.h \
libconcord/config.status libconcord/config.log \
libconcord/libconcord.rules \
libconcord/libtool libconcord/stamp-h1
rm -rf libconcord/bindings/python/build
( cd concordance/ && [ ! -f Makefile ] || $(MAKE) clean )
rm -f concordance/Makefile concordance/config.h \
concordance/config.status concordance/config.log \
concordance/libtool concordance/stamp-h1
find . -name *\.py[co] -exec rm {} \;
rm -f build-ext-* install-ext-*
rm -f libconcord/libconcord-usbnet.rules
dh_auto_clean
override_dh_auto_configure:
( cd libconcord/ && ./configure --prefix=/usr --sysconfdir=/etc )
( cd concordance/ && CFLAGS=" -L../libconcord/.libs " CPPFLAGS=" -I../libconcord " ./configure --prefix=/usr )
build-ext-%:
( cd libconcord/bindings/python && python$* ./setup.py build )
touch $@
override_dh_auto_build: $(PYVERSL%=build-ext-%)
( cd libconcord/ && $(MAKE) )
( cd libconcord/ && $(MAKE) udev )
( cd concordance/ && $(MAKE) )
install-ext-%:
( cd libconcord/bindings/python && python$* ./setup.py install --root=$(CURDIR)/debian/python-libconcord )
override_dh_auto_install: $(PYVERS:%=install-ext-%)
( cd libconcord/ && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install )
( cd libconcord/ && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install_udev )
( cd concordance/ && $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install )
override_dh_install:
find $(CURDIR)/debian -name *.la -delete
find $(CURDIR)/debian -name *.a -delete
dh_install --fail-missing
get-orig-source:
@@dh_testdir
@@cd ${DEBIAN_DIR}/.. && \
version=$$(uscan --force-download --dehs | \
sed -n 's/.*<upstream-version>\(.*\)<\/upstream-version>.*/\1/p') && \
bzcat ../concordance-$${version}.tar.bz2 | gzip -9fn -c - > \
${CURDIR}/${DEB_SOURCE_PACKAGE}_$${version}.orig.tar.gz
|