summaryrefslogtreecommitdiff
path: root/debian/rules
blob: 4928b4f6fe94eb1fb7a470758dd988f2c9bcd4cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/make -f
# Uncomment this to turn on verbose mode.
#DH_VERBOSE=1

%:
	dh $@ --with python2 --buildsystem=python_distutils

override_dh_auto_build:
	python$* setup.py build_sqlcipher
	python$* setup.py build

override_dh_auto_install:
	python$* setup.py install --skip-build --root=debian/python-sqlcipher \
		--install-layout=deb

override_dh_auto_clean:
	dh_auto_clean
	rm -rf build
	rm -rf docs/_build 
	rm -rf *.egg-info