13 lines
303 B
Makefile
Executable File
13 lines
303 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@ --with python3 --buildsystem=pybuild
|
|
|
|
override_dh_auto_install:
|
|
python3 -m build --wheel --no-isolation
|
|
python3 -m installer --destdir=$(CURDIR)/debian/tmp dist/*.whl
|
|
dh_auto_install
|
|
|
|
override_dh_usrlocal:
|
|
# Nothing to do, since we don't install anything to /usr/local
|