blob: dc97b462663f93558bda22198d2023006055e3d0 (
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 --buildsystem=python_distutils
build-python%:
python$* setup.py build_sqlcipher
install-python%:
python$* setup.py install --root=$(CURDIR)/debian/tmp --install-layout=deb
override_dh_auto_clean:
dh_auto_clean
rm -rf build
rm -rf docs/_build
rm -rf *.egg-info
|