~abentley/bzrtools/bzrtools.dev

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Aaron Bentley
  • Date: 2005-09-22 20:41:09 UTC
  • Revision ID: abentley@panoramicfeedback.com-20050922204109-b98242ae89675684
Warn instead of failing when librsvg is not installed

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# This file is public domain.
3
3
  
4
4
include /usr/share/cdbs/1/rules/debhelper.mk
5
 
include /usr/share/cdbs/1/class/python-distutils.mk
6
 
 
7
 
 
8
 
DEB_PYTHON_COMPILE_VERSION=2.4
9
 
 
10
 
clean::
11
 
        -rm -rf build
12
 
        find . -name "*.pyc" -print0 | xargs -0 rm -f
13
 
 
14
 
common-post-build-indep::
15
 
        ./test.py $(which bzr)
 
5
include /usr/share/cdbs/1/rules/simple-patchsys.mk
 
6
 
 
7
# Hook to add dh_python
 
8
$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%:
 
9
        dh_python -p$(cdbs_curpkg)
 
10