~ubuntu-core-dev/update-notifier/ubuntu

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Michael Vogt
  • Date: 2012-01-18 08:35:33 UTC
  • Revision ID: michael.vogt@ubuntu.com-20120118083533-o80f4tfc13k9e587
add support to apply patches when running the release upgrader

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make -f
2
 
# -*- makefile -*-
3
 
# Sample debian/rules that uses debhelper.
4
 
# GNU copyright 1997 to 1999 by Joey Hess.
5
 
 
6
 
# Uncomment this to turn on verbose mode.
7
 
#export DH_VERBOSE=1
8
 
 
9
 
 
10
 
tmp := $(CURDIR)/debian/upgrade-notifier
11
 
# These are used for cross-compiling and for saving the configure script
12
 
# from having to guess our platform (since we know it already)
13
 
DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
14
 
DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
15
 
 
16
 
 
17
 
CFLAGS = -Wall -g
18
 
 
19
 
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
20
 
        CFLAGS += -O0
21
 
else
22
 
        CFLAGS += -O2
23
 
endif
24
 
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
25
 
        INSTALL_PROGRAM += -s
26
 
endif
27
 
 
28
 
config.status: configure
29
 
        dh_testdir
30
 
        # Add here commands to configure the package.
31
 
        CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info --with-pkg-manager="/usr/bin/update-manager"
32
 
 
33
 
 
34
 
build: build-stamp
35
 
 
36
 
build-stamp:  config.status
37
 
        dh_testdir
38
 
 
39
 
        # Add here commands to compile the package.
40
 
        $(MAKE)
41
 
        #/usr/bin/docbook-to-man debian/upgrade-notifier.sgml > upgrade-notifier.1
42
 
 
43
 
        touch build-stamp
44
 
 
45
 
clean:
46
 
        dh_testdir
47
 
        dh_testroot
48
 
        rm -f build-stamp 
49
 
 
50
 
        # Add here commands to clean up after the build process.
51
 
        -$(MAKE) distclean
52
 
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
53
 
        cp -f /usr/share/misc/config.sub config.sub
54
 
endif
55
 
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
56
 
        cp -f /usr/share/misc/config.guess config.guess
57
 
endif
58
 
 
59
 
 
60
 
        dh_clean 
61
 
 
62
 
install: build
63
 
        dh_testdir
64
 
        dh_testroot
65
 
        dh_clean -k 
66
 
        dh_installdirs
67
 
 
68
 
        # Add here commands to install the package into debian/upgrade-notifier.
69
 
        $(MAKE) install DESTDIR=$(CURDIR)/debian/upgrade-notifier
70
 
 
71
 
        install -p -m 755 debian/synaptic-wrapper $(tmp)/usr/bin
72
 
 
73
 
 
74
 
 
75
 
 
76
 
# Build architecture-independent files here.
77
 
binary-indep: build install
78
 
# We have nothing to do by default.
79
 
 
80
 
# Build architecture-dependent files here.
81
 
binary-arch: build install
82
 
        dh_testdir
83
 
        dh_testroot
84
 
        dh_installchangelogs ChangeLog
85
 
        dh_installdocs
86
 
        dh_installexamples
87
 
#       dh_install
88
 
#       dh_installmenu
89
 
#       dh_installdebconf       
90
 
#       dh_installlogrotate
91
 
#       dh_installemacsen
92
 
#       dh_installpam
93
 
#       dh_installmime
94
 
#       dh_installinit
95
 
#       dh_installcron
96
 
#       dh_installinfo
97
 
        dh_installman
98
 
        dh_link
99
 
        dh_strip
100
 
        dh_compress
101
 
        dh_fixperms
102
 
#       dh_perl
103
 
#       dh_python
104
 
#       dh_makeshlibs
105
 
        dh_installdeb
106
 
        dh_shlibdeps
107
 
        dh_gencontrol
108
 
        dh_md5sums
109
 
        dh_builddeb
110
 
 
111
 
binary: binary-indep binary-arch
112
 
.PHONY: build clean binary-indep binary-arch binary install 
 
2
export CFLAGS += -Wall -g -O$(if $(findstring noopt,$(DEB_BUILD_OPTIONS)),0,2)
 
3
export LDFLAGS += -Wl,-z,defs -Wl,-O1 -Wl,--as-needed
 
4
 
 
5
%:
 
6
        dh $@