From 8a0344b8d1d7d5cb4340938d45ea5be008a3145d Mon Sep 17 00:00:00 2001 From: Wall Date: Sun, 1 Mar 2009 08:55:13 +0000 Subject: [PATCH] rules: build .pyo files --- debian/rules | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/debian/rules b/debian/rules index 657d415..09e56ff 100755 --- a/debian/rules +++ b/debian/rules @@ -4,6 +4,7 @@ #export DH_VERBOSE=1 PACKAGE=findit +PYTHON=PYTHONOPTIMIZE=2 python build: dh_testdir @@ -11,7 +12,7 @@ build: # Add here commands to compile the package. mkdir -p $(CURDIR)/po/ru/ msgfmt $(CURDIR)/po/ru.po -o $(CURDIR)/po/ru/$(PACKAGE).mo - python setup.py build + $(PYTHON) setup.py build touch $@ clean: @@ -20,7 +21,7 @@ clean: rm -rf $(CURDIR)/po/ru # Add here commands to clean up after the build process. - python setup.py clean --all + $(PYTHON) setup.py clean --all rm -rf $(CURDIR)/$(PACKAGE).egg-info/ @@ -32,7 +33,7 @@ install: build dh_clean -k # Add here commands to install the package into debian/findit - python setup.py install --root $(CURDIR)/debian/$(PACKAGE) + $(PYTHON) setup.py install --root $(CURDIR)/debian/$(PACKAGE) # Build architecture-independent files here. binary-indep: build install -- 1.7.9.5