~ubuntu-branches/ubuntu/hoary/nettle/hoary

« back to all changes in this revision

Viewing changes to debian/rules

  • Committer: Bazaar Package Importer
  • Author(s): Marek Habersack
  • Date: 2004-05-04 15:56:02 UTC
  • Revision ID: james.westby@ubuntu.com-20040504155602-5l7iv327pnxndcao
Tags: 1.10-1
The latest upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
# These are used for cross-compiling and for saving the configure script
 
11
# from having to guess our platform (since we know it already)
 
12
DEB_HOST_GNU_TYPE   ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 
13
DEB_BUILD_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
 
14
 
 
15
 
 
16
CFLAGS = -Wall -g
 
17
 
 
18
ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
 
19
        CFLAGS += -O0
 
20
else
 
21
        CFLAGS += -O2
 
22
endif
 
23
ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
 
24
        INSTALL_PROGRAM += -s
 
25
endif
 
26
 
 
27
# shared library versions, option 1
 
28
version=2.0.5
 
29
major=2
 
30
# option 2, assuming the library is created as src/.libs/libfoo.so.2.0.5 or so
 
31
#version=`ls src/.libs/lib*.so.* | \
 
32
# awk '{if (match($$0,/[0-9]+\.[0-9]+\.[0-9]+$$/)) print substr($$0,RSTART)}'`
 
33
#major=`ls src/.libs/lib*.so.* | \
 
34
# awk '{if (match($$0,/\.so\.[0-9]+$$/)) print substr($$0,RSTART+4)}'`
 
35
 
 
36
config.status: configure
 
37
        dh_testdir
 
38
        # Add here commands to configure the package.
 
39
        CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) \
 
40
                                       --build=$(DEB_BUILD_GNU_TYPE) \
 
41
                                                   --prefix=/usr \
 
42
                                       --mandir=\$${prefix}/share/man \
 
43
                                       --infodir=\$${prefix}/share/info \
 
44
                                       --enable-shared \
 
45
                                       --disable-dependency-tracking
 
46
 
 
47
 
 
48
build: build-stamp
 
49
build-stamp:  config.status
 
50
        dh_testdir
 
51
 
 
52
        # Add here commands to compile the package.
 
53
        $(MAKE)
 
54
 
 
55
        touch build-stamp
 
56
 
 
57
clean:
 
58
        dh_testdir
 
59
        dh_testroot
 
60
        rm -f build-stamp 
 
61
 
 
62
        # Add here commands to clean up after the build process.
 
63
        -$(MAKE) distclean
 
64
ifneq "$(wildcard /usr/share/misc/config.sub)" ""
 
65
        cp -f /usr/share/misc/config.sub config.sub
 
66
endif
 
67
ifneq "$(wildcard /usr/share/misc/config.guess)" ""
 
68
        cp -f /usr/share/misc/config.guess config.guess
 
69
endif
 
70
 
 
71
 
 
72
        dh_clean 
 
73
 
 
74
install: build
 
75
        dh_testdir
 
76
        dh_testroot
 
77
        dh_clean -k 
 
78
        dh_installdirs
 
79
 
 
80
        # Add here commands to install the package into debian/tmp
 
81
        $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp
 
82
 
 
83
 
 
84
# Build architecture-independent files here.
 
85
binary-indep: build install
 
86
# We have nothing to do by default.
 
87
 
 
88
# Build architecture-dependent files here.
 
89
binary-arch: build install
 
90
        dh_testdir
 
91
        dh_testroot
 
92
        dh_movefiles
 
93
        dh_installchangelogs ChangeLog
 
94
        dh_installdocs
 
95
        dh_installexamples
 
96
        dh_installinfo
 
97
        dh_installman
 
98
        dh_link
 
99
        dh_strip
 
100
        dh_compress
 
101
        dh_fixperms
 
102
        dh_makeshlibs
 
103
        dh_installdeb
 
104
        dh_shlibdeps
 
105
        dh_gencontrol
 
106
        dh_md5sums
 
107
        dh_builddeb
 
108
 
 
109
binary: binary-indep binary-arch
 
110
.PHONY: build clean binary-indep binary-arch binary install