~timo-jyrinki/ubuntu/trusty/pitivi/backport_utopic_fixes

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Package Import Robot
  • Author(s): Sebastian Dröge
  • Date: 2014-04-05 15:28:16 UTC
  • mfrom: (6.1.13 sid)
  • Revision ID: package-import@ubuntu.com-20140405152816-6lijoax4cngiz5j5
Tags: 0.93-3
* debian/control:
  + Depend on python-gi (>= 3.10), older versions do not work
    with pitivi (Closes: #732813).
  + Add missing dependency on gir1.2-clutter-gst-2.0 (Closes: #743692).
  + Add suggests on gir1.2-notify-0.7 and gir1.2-gnomedesktop-3.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
 
DEB_PYTHON2_MODULE_PACKAGES=pitivi
3
 
 
4
 
include /usr/share/cdbs/1/class/autotools.mk
5
 
include /usr/share/cdbs/1/rules/debhelper.mk
6
 
include /usr/share/cdbs/1/rules/utils.mk
7
 
include /usr/share/cdbs/1/class/gnome.mk
8
 
 
9
 
binary-post-install/pitivi::
10
 
        # set executable bit on files with a shebang
11
 
        -egrep -rlZ '^#!(.*)python' debian/pitivi/usr/lib/pitivi | xargs -0 chmod a+x --
12
 
        dh_python2
 
2
 
 
3
include /usr/share/dpkg/default.mk
 
4
include /usr/share/python/python.mk
 
5
 
 
6
configure_flags += \
 
7
                --disable-silent-rules \
 
8
                $(NULL)
 
9
 
 
10
%:
 
11
        dh $@ --with python2
 
12
 
 
13
override_dh_auto_configure:
 
14
        dh_auto_configure -- $(configure_flags)
 
15
 
 
16
override_dh_auto_test:
13
17