summaryrefslogtreecommitdiff
path: root/debian/rules
blob: 93ce6e1103adb957ab9b80805465590606ee8cb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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

%:
	dh $@ --with python2 --namespace=leap.soledad --with=systemd

override_dh_auto_clean:
	dh_auto_clean
	find . -name "*.pyc" -exec rm -rf {} \;
	find . -name ".tox" -exec rm -rf {} \;