blob: c9033e7ef949c938ac38e369aac41e6fcdd7ebf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/make -f
# Prevent setuptools/distribute from accessing the internet.
export http_proxy = http://127.0.0.1:9
# Uncomment this to turn on verbose mode.
DH_VERBOSE=1
NAME=soledad-server
%:
dh $@ --with python2 --namespace=leap.soledad --with=systemd
override_dh_installinit:
dh_systemd_enable -p${NAME} --name=${NAME} ${NAME}.service
dh_installinit -p${NAME} --no-start --noscripts
override_dh_auto_clean:
dh_auto_clean
find . -name "*.pyc" -exec rm -rf {} \;
find . -name ".tox" -exec rm -rf {} \;
|