blob: 215115561f2854c493235d5fba15b4dbaa13eb4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#DH_VERBOSE=1
%:
dh $@ --with python2 --namespace=leap.soledad
#override_dh_auto_install:
#cd client && python setup.py install --root=../debian/soledad-client
#cd common && python setup.py install --root=../debian/soledad-common
#cd server &&
# --root=../debian/soledad-server
#LEAP_SKIP_INIT=1 python setup.py install
override_dh_auto_clean:
dh_auto_clean
find . -name "*.pyc" -exec rm -rf {} \;
find . -name ".tox" -exec rm -rf {} \;
|