From: Wall Date: Sun, 1 Mar 2009 08:55:13 +0000 (+0000) Subject: rules: build .pyo files X-Git-Tag: releases/0.1.0^2~3 X-Git-Url: http://git.maemo.org/git/?p=findit;a=commitdiff_plain;h=8a0344b8d1d7d5cb4340938d45ea5be008a3145d rules: build .pyo files --- 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