~ubuntu-branches/ubuntu/precise/mythbuntu-artwork-usplash/precise

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Mario Limonciello
  • Date: 2007-07-29 23:53:59 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070729235359-fqrjef5pwbauyya4
Tags: 0.2-0ubuntu1
* Add new logos.
* debian/copyright:
  - Add Nick Fox to copyright list.
* debian/rules:
  - Add get-orig-source
* debian/control:
  - Add X-Vcs-Bzr URLs
  - Update maintainer to be ubuntu-mythtv@lists.ubuntu.com

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
DEB_MAKE_INSTALL_TARGET := install DESTDIR="$(DEB_DESTDIR)"
6
6
 
 
7
BZR_REVISION+=5
 
8
BZR_BRANCH+=http://bazaar.launchpad.net/~mythbuntu/mythbuntu/$(DEB_SOURCE_PACKAGE)
 
9
TARFILE+=$(DEB_SOURCE_PACKAGE)_$(DEB_UPSTREAM_VERSION).orig.tar.gz
 
10
 
 
11
get-orig-source::
 
12
        bzr export -r $(BZR_REVISION) $(DEB_SOURCE_PACKAGE) $(BZR_BRANCH)
 
13
        tar czf $(CURDIR)/../$(TARFILE) $(DEB_SOURCE_PACKAGE) --exclude debian
 
14
        rm -rf $(CURDIR)/$(DEB_SOURCE_PACKAGE)
 
15
 
 
16
../$(TARFILE):: get-orig-source
 
17