~ubuntu-branches/ubuntu/trusty/argtable2/trusty

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Shachar Shemesh
  • Date: 2010-08-22 16:33:24 UTC
  • mfrom: (1.1.4 upstream) (3.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20100822163324-mobfeobfis6gfysc
Tags: 12-1
* New upstream version
* Upgraded the Debian policy to 3.9.1.0 
* Change the debhelper compatibility level to V8
* Various Lintian cleanups
* Reduce debian/rules to rely on debhelper more (Closes: #488585)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
2
# -*- makefile -*-
3
 
# Sample debian/rules that uses debhelper.
4
 
# This file was originally written by Joey Hess and Craig Small.
5
 
# As a special exception, when this file is copied by dh-make into a
6
 
# dh-make output file, you may use that output file without restriction.
7
 
# This special exception was added by Craig Small in version 0.37 of dh-make.
8
3
 
9
4
# Uncomment this to turn on verbose mode.
10
5
#export DH_VERBOSE=1
11
6
 
12
 
 
13
 
# These are used for cross-compiling and for saving the configure script
14
 
# from having to guess our platform (since we know it already)
15
 
DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
16
 
DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
17
 
 
18
 
 
19
 
CFLAGS = -Wall -g
20
 
 
21
 
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
22
 
        CFLAGS += -O0
23
 
else
24
 
        CFLAGS += -O2
25
 
endif
26
 
 
27
7
# Shared library version
28
8
major=0
29
9
 
30
 
config.status: configure
31
 
        dh_testdir
32
 
        # Add here commands to configure the package.
33
 
        CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
34
 
 
35
 
 
36
 
build: build-stamp
37
 
build-stamp:  config.status
38
 
        dh_testdir
39
 
        $(MAKE)
40
 
        touch build-stamp
 
10
%:
 
11
        dh $@
41
12
 
42
13
clean:
43
 
        dh_testdir
44
 
        dh_testroot
45
 
        rm -f build-stamp 
46
 
 
47
 
        # Add here commands to clean up after the build process.
48
14
        [ ! -f Makefile ] || $(MAKE) distclean
49
 
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
50
 
        cp -f /usr/share/misc/config.sub config.sub
51
 
endif
52
 
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
53
 
        cp -f /usr/share/misc/config.guess config.guess
54
 
endif
55
 
 
56
 
 
57
 
        dh_clean 
58
 
 
59
 
install: build
60
 
        dh_testdir
61
 
        dh_testroot
62
 
        dh_clean -k 
63
 
        dh_installdirs
64
 
 
65
 
        # Add here commands to install the package into debian/tmp
66
 
        $(MAKE) install prefix=$(CURDIR)/debian/tmp/usr
 
15
        dh clean
 
16
 
 
17
install:
 
18
        dh install
67
19
        mv $(CURDIR)/debian/tmp/usr/share/doc/argtable2 $(CURDIR)/debian/tmp/usr/share/doc/libargtable2-dev
68
20
 
69
 
# Build architecture-independent files here.
70
 
binary-indep: build install
71
 
# We have nothing to do by default.
72
 
 
73
 
# Build architecture-dependent files here.
74
 
binary-arch: build install
75
 
        dh_testdir
76
 
        dh_testroot
77
 
        dh_installchangelogs 
78
 
        dh_installdocs
79
 
        tar cvzf debian/libargtable2-dev/usr/share/doc/libargtable2-dev/examples.tar.gz example/*.c example/*.h example/README.txt example/Makefile
80
 
        dh_install --sourcedir=debian/tmp --list-missing -Xusr/share/doc/ -Xusr/share/man
81
 
        dh_installman
82
 
        dh_link
83
 
        dh_strip
84
 
        dh_compress
85
 
        dh_fixperms
86
 
        dh_makeshlibs
87
 
        dh_installdeb
88
 
        dh_shlibdeps -L libargtable2-$(major) -l debian/libargtable2-$(major)/usr/lib
89
 
        dh_gencontrol
90
 
        dh_md5sums
91
 
        dh_builddeb
92
 
 
93
 
binary: binary-indep binary-arch
94
 
.PHONY: build clean binary-indep binary-arch binary install 
 
21
binary-indep:
 
22
        tar cvzf debian/libargtable2-dev/usr/share/doc/libargtable2-dev/examples.tar.gz example/*.c example/*.h \
 
23
                example/README.txt example/Makefile
 
24
        dh binary-indep
 
25