~ubuntu-branches/ubuntu/vivid/wmbattery/vivid-proposed

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Package Import Robot
  • Author(s): Doug Torrance
  • Date: 2014-09-21 23:52:13 UTC
  • mfrom: (9.1.1)
  • Revision ID: package-import@ubuntu.com-20140921235213-2gqfatmmeluixvgp
Tags: 2.44+git20140921-1
* New maintainer (Closes: #756544).
* Switch from native to non-native package.
* New upstream release (git snapshot).
* debian/control
  - Bump Standards-Version to 3.9.6, no changes required.
  - Add Vcs-Browser.
  - Update Homepage and Vcs-Git.
  - Switch Build-Depends from autoconf to dh-autoreconf.
  - Remove unnecessary Build-Depends dpkg-dev and libxt-dev.
* debian/copyright
  - Add Upstream-*.
  - Update Source.
* debian/rules
  - Switch to use dh-autoreconf.
  - Remove announcedir target.
  - Add get-orig-source target.
* debian/source/format
  - New file; use 3.0 (quilt).
* debian/watch
  - New file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
2
%:
3
 
        dh $@
4
 
 
5
 
override_dh_auto_configure:
6
 
        autoconf
7
 
        dh_auto_configure
8
 
 
9
 
# Not intended for use by anyone except the author.
10
 
announcedir:
11
 
        @echo ${HOME}/src/joeywiki/code/wmbattery/news
 
3
        dh $@ --with autoreconf
 
4
 
 
5
get-orig-source:
 
6
        uscan --verbose --force-download
 
7
        @if test -e ../wmbattery-*.download ; then \
 
8
                rename -fv "s/wmbattery-(.+)\.download/wmbattery_\1\.orig\.tar\.gz/" \
 
9
                        ../wmbattery-*.download; \
 
10
        fi
 
11