13 lines
374 B
Makefile
Executable File
13 lines
374 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export PYBUILD_NAME=revpi-middleware
|
|
export PYBUILD_INSTALL_ARGS=--install-lib=/usr/share/$(PYBUILD_NAME)/ --install-scripts=/usr/share/$(PYBUILD_NAME)/
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild
|
|
|
|
override_dh_auto_test:
|
|
# Currently, the tests have to be skipped, because no SystemBus is
|
|
# available in the Docker container.
|
|
@echo "Skipped tests"
|