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
|
#!/usr/bin/make -f
# -*- makefile -*-
export DEB_LDFLAGS_MAINT_APPEND=-Wl,-Bsymbolic-functions -Wl,--as-needed
export MA_TRIPLET=`dpkg-architecture -qDEB_HOST_MULTIARCH`
%:
dh $@ --with python2
override_dh_auto_configure:
dh_auto_configure -- -DBUILD_PYTHON:Bool=True -DPROJECT_LIBRARY_INSTALL_DIR="lib/$(MA_TRIPLET)"
override_dh_auto_build-indep:
ifeq (,$(filter nodoc,$(DEB_BUILD_OPTIONS)))
doxygen debian/doxygen.conf
else
: # Documentation was not built due to nodoc flag in DEB_BUILD_OPTIONS
: # Creating dummy blank debian/html expected by -doc package
mkdir -p debian/html
endif
override_dh_auto_install:
dh_auto_install
mv debian/tmp/usr/bin/glview debian/tmp/usr/bin/freenect-glview
mv debian/tmp/usr/bin/glpclview debian/tmp/usr/bin/freenect-glpclview
mv debian/tmp/usr/bin/cppview debian/tmp/usr/bin/freenect-cppview
override_dh_python2:
dh_python2 -p python-freenect
if [ -x /usr/bin/dh_numpy ]; then dh_numpy -ppython-freenect; fi
override_dh_installdocs:
dh_installdocs --all CONTRIB
override_dh_makeshlibs:
dh_makeshlibs -Xfakenect
override_dh_clean-indep:
rm -rf debian/html
|