diff options
author | Cyril Brulebois <cyril@debamax.com> | 2016-04-07 19:28:56 +0200 |
---|---|---|
committer | Cyril Brulebois <cyril@debamax.com> | 2016-04-07 22:40:52 +0200 |
commit | 8781ad4792d96cefc7c2299a349c1aab8332425e (patch) | |
tree | 7467967e109bc961343003173b4d729ec7058113 | |
parent | 36bafd0de24048e466f3720e59031961283475d4 (diff) | |
download | Ishtar-8781ad4792d96cefc7c2299a349c1aab8332425e.tar.bz2 Ishtar-8781ad4792d96cefc7c2299a349c1aab8332425e.zip |
Prepare installing files manually.
Signed-off-by: Cyril Brulebois <cyril@debamax.com>
-rwxr-xr-x | debian/rules | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/debian/rules b/debian/rules index dd12cc51f..903fa0919 100755 --- a/debian/rules +++ b/debian/rules @@ -10,9 +10,23 @@ PYTHON2=$(shell pyversions -vr) export http_proxy = http://127.0.9.1:9 %: - dh $@ --with python2 + dh $@ + +override_dh_auto_build: + echo "Building does nothing" + +override_dh_auto_configure: + echo "Configuring does nothing" + +override_dh_auto_install: + git ls-files \ + | grep -v ^debian \ + | grep -v ^django-simple-history \ + | grep -v ^doc \ + > install.list + mkdir -p debian/tmp/var/lib/python-django-ishtar + rsync -av --files-from install.list . debian/tmp/var/lib/python-django-ishtar override_dh_auto_clean: dh_auto_clean - rm -rf build - rm -rf *.egg-info + rm -f install.list |