~ubuntu-branches/ubuntu/lucid/ksshaskpass/lucid

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Armin Berres
  • Date: 2010-01-02 00:01:55 UTC
  • mfrom: (1.2.1 upstream) (2.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20100102000155-5lbgltmmc9x25fg3
Tags: 0.5.3-1
* New upstream release.
  - Upload to unstable.
* Raise standards version to 3.8.3. No changes needed.
* Use dh v7 and minimal rules file:
  - Build depend on debhelper 7.3 for cmake support.
* Switch package to dpkg-source format 3.0 (quilt).
* Add README.Debian.
* Update my email address.
* Depend on ${misc:Depends}.
* Override lintian warning 'desktop-command-not-in-package'.
* Remove unused postrm file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
 
# -*- makefile -*-
3
 
 
4
 
# Uncomment this to turn on verbose mode.
5
 
#export DH_VERBOSE=1
6
 
 
7
 
DEB_CMAKE_EXTRA_FLAGS += \
8
 
                        -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \
9
 
                        -DCMAKE_MODULE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \
10
 
                        -DCMAKE_EXE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed"
11
 
 
12
 
include /usr/share/cdbs/1/class/cmake.mk
13
 
include /usr/share/cdbs/1/rules/debhelper.mk
14
 
include /usr/share/cdbs/1/rules/patchsys-quilt.mk
 
2
 
 
3
override_dh_auto_configure:
 
4
        dh_auto_configure -- -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \
 
5
                -DCMAKE_MODULE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed" \
 
6
                -DCMAKE_EXE_LINKER_FLAGS="-Wl,--no-undefined -Wl,--as-needed"
 
7
 
 
8
%:
 
9
        dh --buildsystem=cmake --builddirectory=builddir $@
15
10