2014-09-10 21:39:29 +02:00
|
|
|
#!/usr/bin/make -f
|
2014-09-23 13:17:24 +02:00
|
|
|
#export DH_VERBOSE=1
|
2014-09-10 21:39:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
%:
|
2015-08-12 23:49:44 +02:00
|
|
|
dh ${@} --buildsystem cmake --parallel
|
2014-09-10 21:39:29 +02:00
|
|
|
|
|
|
|
|
2015-08-21 20:35:59 +08:00
|
|
|
override_dh_auto_configure:
|
|
|
|
dh_auto_configure -- \
|
|
|
|
-DCMAKE_INSTALL_LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH)
|
|
|
|
|
|
|
|
|
2014-09-10 21:39:29 +02:00
|
|
|
override_dh_install:
|
|
|
|
dh_install --list-missing --fail-missing
|
|
|
|
|
2015-08-12 23:49:44 +02:00
|
|
|
|
|
|
|
override_dh_strip:
|
|
|
|
dh_strip --dbg-package=libsysstat-qt5-0-dbg
|
|
|
|
|
2014-09-10 21:39:29 +02:00
|
|
|
|