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