~ubuntu-branches/ubuntu/trusty/clustalx/trusty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Charles Plessy, Steffen Moeller, Charles Plessy
  • Date: 2009-10-21 13:25:44 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20091021132544-r4hbcnjxp354wxh0
Tags: 2.0.12-1
* New upstream release (LP: #423648, #393769):
  - Uses Qt instead of lesstif.
  - Includes new code for UPGMA guide trees.
  - Includes iterative alignment facility.

[ Steffen Moeller ]
* New upstream release.
* Updated watch file (Closes: #550893).
* Removed LICENSE from debian/clustalx.docs
* rename to clustalx seems no longer required in debian/rules
* moved clustalx.1 into debian folder (eases working with svn-buildpackage)
* added German translation to desktop file

[ Charles Plessy ]
* Updated my email address.
* debian/copyright made machine-readable.
* Added various informations in debian/upstream-metadata.yaml.
* Switched to Debhelper 7.
  (debian/rules, debian/control, debian/patches, debian/compat)
* Removed useless Debhelper file debian/clustalx.dirs.
* Updated package description.
* Hardcoded the localisation of accessory files in /usr/share/clustalx.
  (debian/patches/hardcode-accessory-file-locations.patch)
* Documented in debian/README.source that the documentation for quilt
  is in /usr/share/doc/quilt.
* Added upstream changelog downloaded from upstream website
  (debian/rules, debian/CHANGELOG.upstream).
* Incremented Standards-Version to reflect conformance with Policy 3.8.3
  (debian/control, no other changes needed).
* Updated homepage in debian/clustalw.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 
3
3
include /usr/share/quilt/quilt.make
4
4
 
5
 
build: patch build-stamp
6
 
build-stamp:
 
5
build: build-stamp
 
6
build-stamp: patch
7
7
        dh_testdir
8
 
        $(MAKE)
9
 
        touch build-stamp
 
8
        qmake-qt4
 
9
        dh build
10
10
 
11
11
clean: unpatch
12
 
        dh_testdir
13
 
        dh_testroot
14
 
        [ ! -f Makefile ] || $(MAKE) distclean
15
 
        dh_clean build-stamp
 
12
        dh clean
16
13
 
17
14
install:
18
15
install: build
19
 
        dh_testdir
20
 
        dh_testroot
21
 
        dh_clean -k
22
 
        dh_installdirs
23
 
        dh_install
 
16
        dh install
24
17
 
 
18
# Build architecture-dependent files here.
25
19
binary-arch: build install
26
 
        dh_testdir
27
 
        dh_testroot
28
 
        dh_installdocs
29
 
        dh_installexamples
30
 
        dh_installmenu
31
 
        dh_desktop
32
 
        dh_installmime
33
 
        dh_installman
34
 
        dh_installchangelogs
35
 
        dh_strip
36
 
        dh_link
37
 
        dh_compress
38
 
        dh_fixperms
39
 
        dh_installdeb
40
 
        dh_shlibdeps
41
 
        dh_gencontrol
42
 
        dh_md5sums
43
 
        dh_builddeb
44
 
 
45
 
get-orig-source:
46
 
        destdir=.;if [ -d debian ]; then destdir=..; fi; \
47
 
        lynx --dump ftp://ftp.ebi.ac.uk/pub/software/unix/clustalx/clustalx1.83.sun.tar.gz | tar --delete clustalx1.83.sun/clustalx clustalx1.83.sun/clustalw  -f - | gzip -c > $$destdir/clustalw_1.83.orig.tar.gz
 
20
        dh binary-arch
48
21
 
49
22
binary: binary-arch
50
23
binary-indep: # does nothing
 
24
 
 
25
override_dh_installchangelogs:
 
26
        dh_installchangelogs debian/CHANGELOG.upstream
 
27
 
51
28
.PHONY: build clean binary-arch binary install