~ubuntu-branches/ubuntu/raring/qtscript-opensource-src/raring-proposed

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-06 08:11:37 UTC
  • Revision ID: package-import@ubuntu.com-20130206081137-y0mc5ybf7lbvvixh
Tags: 5.0.1+dfsg-0ubuntu1
* New upstream release.
* Cherry-pick from upstream:
  - add_license_files.patch
* Re-pack tarball by removing files with somewhat uncertain licenses
* debian/patches/disable_v8_sunspider_tests.patch:
  - Disable removed tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/make -f
 
2
 
 
3
# Uncomment this to turn on verbose mode.
 
4
#export DH_VERBOSE=1
 
5
 
 
6
export CFLAGS := $(shell dpkg-buildflags --get CFLAGS) $(shell dpkg-buildflags --get CPPFLAGS)
 
7
export CXXFLAGS := $(shell dpkg-buildflags --get CXXFLAGS) $(shell dpkg-buildflags --get CPPFLAGS)
 
8
export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) -Wl,--as-needed
 
9
 
 
10
%:
 
11
        dh $@ --list-missing --parallel --with pkgkde_symbolshelper --dbg-package=qtscript5-dbg 
 
12
 
 
13
override_dh_auto_configure:
 
14
        qmake
 
15
 
 
16
override_dh_builddeb:
 
17
        dh_builddeb -- -Zxz
 
18