forked from OpenZWave/python-openzwave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrules
More file actions
executable file
·27 lines (24 loc) · 1.03 KB
/
rules
File metadata and controls
executable file
·27 lines (24 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/make -f
%:
dh $@ --with python2
override_dh_auto_build:
python setup-lib.py build --debian-package
override_dh_auto_install:
python setup-lib.py install --root=debian/python-openzwave-lib/ --install-layout=deb --debian-package
rm -rf debian/python-openzwave-lib/usr/config
rm -rf build
python setup-api.py install --root=debian/python-openzwave-api/ --install-layout=deb --debian-package
rm -rf build
python setup-manager.py install --root=debian/python-openzwave-manager/ --install-layout=deb --debian-package
rm -rf build
python setup-web.py install --root=debian/python-openzwave-web/ --install-layout=deb --debian-package
python setup-lib.py develop --debian-package
python setup-api.py develop --debian-package
python setup-manager.py develop --debian-package
python setup-web.py develop --debian-package
cd docs && make html
cd docs && make text
python setup-lib.py develop --uninstall
python setup-api.py develop --uninstall
python setup-manager.py develop --uninstall
python setup-web.py develop --uninstall