Cura-packaging/CuraEngine/rules
Thomas Karl Pietrowski 223402b20d CuraEngine: Determine and add version to engine
Otherwise we get told that the engine has been build from master, since "master" is the default string for this option.

Signed-off-by: Thomas Karl Pietrowski <thopiekar@gmail.com> (github: thopiekar)
2019-03-04 16:46:21 +01:00

22 lines
524 B
Makefile
Executable File

#!/usr/bin/make -f
# output every command that modifies files on the build system.
#export DH_VERBOSE = 1
DEB_PACKAGE_VERSION ?= $(shell dpkg-parsechangelog -SVersion | cut -f2 -d":" | cut -f1 -d"~")
%:
dh $@ --buildsystem=cmake --parallel
override_dh_auto_configure:
dh_auto_configure -- \
-DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) \
-DBUILD_TESTS:BOOL=ON \
-DCURA_ENGINE_VERSION=${DEB_PACKAGE_VERSION}
override_dh_install:
dh_install --fail-missing
override_dh_auto_test:
dh_auto_test || true