
Change-Id: I768b136c803d5e197e3653d1b84e147b62a97676 Reviewed-on: https://forge.frm2.tum.de/review/c/secop/frappy/+/34924 Tested-by: Jenkins Automated Tests <pedersen+jenkins@frm2.tum.de> Reviewed-by: Alexander Zaft <a.zaft@fz-juelich.de>
20 lines
414 B
Makefile
Executable File
20 lines
414 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
#export DH_VERBOSE=1
|
|
|
|
export PYBUILD_NAME=frappy
|
|
export PYBUILD_TEST_PYTEST=1
|
|
|
|
override_dh_install:
|
|
rmdir debian/tmp
|
|
mv debian/python3-frappy debian/tmp
|
|
|
|
install -m644 -Dt debian/tmp/etc/frappy etc/generalConfig.cfg
|
|
dh_install -i -O--buildsystem=pybuild
|
|
dh_missing --fail-missing
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild
|