]> git.proxmox.com Git - mirror_smartmontools-debian.git/blob - debian/rules
debian/rules: Provide build-arch and build-indep
[mirror_smartmontools-debian.git] / debian / rules
1 #!/usr/bin/make -f
2 # Sample debian/rules that uses debhelper.
3 # GNU copyright 1997 to 1999 by Joey Hess.
4
5 # Uncomment this to turn on verbose mode.
6 #export DH_VERBOSE=1
7
8 DEB_BUILD_ARCH_OS ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS)
9 DEB_BUILD_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH_CPU)
10
11 ifeq ($(DEB_HOST_ARCH_OS),linux)
12 CONFIGURE_ARGS += --with-selinux
13 endif
14
15 CFLAGS += -fsigned-char -Wall
16 ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
17 CFLAGS += -O0
18 else
19 CFLAGS += -O2
20 endif
21 ifeq (,$(findstring nostrip,$(DEB_BUILD_OPTIONS)))
22 INSTALL_PROGRAM = install -s
23 else
24 INSTALL_PROGRAM = install
25 endif
26
27 PACKAGE = smartmontools
28 SRC_VERSION := $(shell dpkg-parsechangelog | sed -ne 's/^Version: \(.*\)-.*/\1/p'| cut -d':' -f2)
29 SVN_REVISION := $(shell echo $(SRC_VERSION) | awk -F"+" '{ print $$2 }' | sed 's/svn//' )
30 TARBALL = $(PACKAGE)_$(SRC_VERSION).orig.tar.gz
31
32 get-orig-source:
33 rm -rf get-orig-source $(TARBALL)
34 mkdir get-orig-source
35 svn export -r $(SVN_REVISION) https://smartmontools.svn.sourceforge.net/svnroot/smartmontools/trunk/smartmontools/ \
36 get-orig-source/$(PACKAGE)-$(SRC_VERSION).orig
37 GZIP=--best tar czf $(TARBALL) -C get-orig-source $(PACKAGE)-$(SRC_VERSION).orig
38 rm -rf get-orig-source
39 echo " "$(TARBALL)" created; move it to the right destination to build the package"
40
41 configure: configure-stamp
42 configure-stamp:
43 dh_testdir
44 ./autogen.sh
45 CFLAGS="${CFLAGS}" ./configure --prefix=/usr \
46 --sysconfdir=/etc \
47 --mandir=/usr/share/man \
48 --with-initscriptdir=no \
49 --with-docdir=/usr/share/doc/smartmontools \
50 --enable-drivedb \
51 --enable-savestates \
52 --enable-attributelog \
53 --with-savestates=/var/lib/smartmontools/smartd. \
54 --with-attributelog=/var/lib/smartmontools/attrlog. \
55 --with-exampledir=/usr/share/doc/smartmontools/examples/ \
56 ${CONFIGURE_ARGS}
57 touch configure-stamp
58
59 build: build-arch build-indep
60 build-arch: build-stamp
61 build-indep: build-stamp
62 build-stamp: configure-stamp
63 dh_testdir
64 # Add here commands to compile the package.
65 $(MAKE)
66 touch build-stamp
67
68 clean:
69 dh_testdir
70 dh_testroot
71 # rm -f debian/logcheck.logcheck.ignore.*
72 # Add here commands to clean up after the build process.
73 [ ! -f Makefile ] || $(MAKE) distclean
74 rm -f build-stamp configure-stamp \
75 Makefile.in examplescripts/Makefile.in aclocal.m4 configure
76 dh_clean
77
78 install: build
79 dh_testdir
80 dh_testroot
81 dh_prep
82 dh_installdirs
83 $(MAKE) DESTDIR=$(CURDIR)/debian/smartmontools install
84 install -D -m 755 debian/smartmontools-bug \
85 $(CURDIR)/debian/smartmontools/usr/share/bug/smartmontools
86
87 # Build architecture-independent files here.
88 binary-indep:
89 # We have nothing to do by default.
90
91 # Build architecture-dependent files here.
92 binary-arch: build install
93 dh_testdir
94 dh_testroot
95 dh_installdocs
96 dh_installexamples
97 dh_installmenu
98 dh_installlogrotate
99 dh_install
100 dh_installinit -- start 20 2 3 4 5 . stop 20 1 .
101 dh_installcron
102 dh_installman
103 dh_installinfo
104 dh_lintian
105 dh_installchangelogs ChangeLog
106 dh_link
107 dh_strip
108 dh_compress
109 dh_fixperms
110 chmod 755 $(CURDIR)/debian/smartmontools/etc/smartmontools/run.d/10mail \
111 $(CURDIR)/debian/smartmontools/etc/smartmontools/run.d/10powersave-notify \
112 $(CURDIR)/debian/smartmontools/usr/share/smartmontools/smartd-runner
113 dh_makeshlibs
114 dh_installdeb
115 dh_shlibdeps
116 dh_gencontrol
117 dh_md5sums
118 dh_builddeb
119
120 binary: binary-indep binary-arch
121 .PHONY: build clean binary-indep binary-arch binary install configure get-orig-source