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
|
%:
dh $@
override_dh_auto_clean:
dh_auto_clean
rm -rf doxygen build .sconsign.dblite
override_dh_auto_configure:
dh_auto_configure -- -DBUILD_EXAMPLES=ON -DBUILD_TESTS=ON
override_dh_auto_build-indep:
doxygen Doxyfile
dh_auto_build
override_dh_install:
dh_install -plibwebsocketpp-doc doxygen/html/* usr/share/doc/libwebsocketpp-doc/html
dh_install -plibwebsocketpp-dev debian/tmp/usr/* usr
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
dh_auto_test --no-parallel
BOOST_LIBS=/usr/lib/$(DEB_HOST_MULTIARCH) BOOST_INCLUDES=/usr/include/boost scons test
endif
|