mirror of
https://github.com/cmur2/python-bme680.git
synced 2024-11-01 02:56:15 +01:00
13 lines
320 B
Makefile
Executable File
13 lines
320 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
#export DH_VERBOSE=1
|
|
export DH_OPTIONS
|
|
|
|
%:
|
|
dh $@ --with python2,python3 --buildsystem=python_distutils
|
|
|
|
override_dh_auto_install:
|
|
python setup.py install --root debian/python-bme680 --install-layout=deb
|
|
python3 setup.py install --root debian/python3-bme680 --install-layout=deb
|