mirror of
https://github.com/pyMC-dev/pyMC_Repeater.git
synced 2026-06-26 13:01:06 +02:00
23 lines
483 B
Makefile
Executable File
23 lines
483 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
export PYBUILD_NAME=openhop-repeater
|
|
export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild
|
|
|
|
override_dh_auto_test:
|
|
# Skip tests - cherrypy-cors not available in Debian repos
|
|
# Tests pass in development with: pip install cherrypy-cors
|
|
|
|
override_dh_auto_clean:
|
|
dh_auto_clean
|
|
rm -rf build/
|
|
rm -rf *.egg-info/
|
|
rm -rf .pybuild/
|
|
rm -f repeater/_version.py
|
|
|
|
override_dh_installsystemd:
|
|
dh_installsystemd --name=openhop-repeater
|