File: rules

package info (click to toggle)
irda-utils 0.9.14-17
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,336 kB
  • ctags: 1,193
  • sloc: sh: 7,308; ansic: 5,547; makefile: 235; perl: 224
file content (108 lines) | stat: -rwxr-xr-x 2,939 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#!/usr/bin/make -f

# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1

export DH_COMPAT=2

ifeq ($(DEB_BUILD_ARCH),)
DEB_BUILD_ARCH=`dpkg-architecture -qDEB_BUILD_ARCH`
endif

RPM_OPT_FLAGS='-g -O2'

build: build-stamp
build-stamp:
	dh_testdir

	(cd irattach;$(MAKE) RPM_OPT_FLAGS=$(RPM_OPT_FLAGS))
#	(cd irdadump; ./configure --disable-glibtest; 
#		$(MAKE) RPM_OPT_FLAGS=$(RPM_OPT_FLAGS))
	(cd irdadump; $(MAKE) RPM_OPT_FLAGS=$(RPM_OPT_FLAGS) CFLAGS=`glib-config --cflags`)
	(cd irdaping; $(MAKE) SYS_INCLUDES=-I/usr/include RPM_OPT_FLAGS=$(RPM_OPT_FLAGS))
	(cd psion; $(MAKE) RPM_OPT_FLAGS=$(RPM_OPT_FLAGS))
	if [ "$(DEB_BUILD_ARCH)" = "i386" ]; then \
		(cd findchip; $(MAKE) RPM_OPT_FLAGS=$(RPM_OPT_FLAGS)); \
	fi

	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp install-stamp

	# Add here commands to clean up after the build process.
	-$(MAKE) clean
	-(cd irattach; $(MAKE) clean)
	-(cd irdadump; $(MAKE) clean)
	-(cd irdaping; $(MAKE) clean)
	-(cd psion; $(MAKE) clean)
	-(cd findchip; $(MAKE) clean)
	#-$(MAKE) distclean

	dh_clean

install: install-stamp
install-stamp: build-stamp
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs

	# Add here commands to install the package into debian/tmp.
	#$(MAKE) prefix=`pwd`/debian/tmp/usr install
	install irattach/irattach `pwd`/debian/irda-common/usr/sbin
	if [ "$(DEB_BUILD_ARCH)" = "i386" ]; then \
		install findchip/findchip `pwd`/debian/irda-common/usr/sbin; \
	fi
	install -m 644 debian/modutils-irda `pwd`/debian/irda-common/etc/modutils/irda

	install irdadump/shell/irdadump `pwd`/debian/irda-tools/usr/bin
	install irdaping/irdaping `pwd`/debian/irda-tools/usr/bin
	install psion/irpsion5 `pwd`/debian/irda-tools/usr/bin

	touch install-stamp

# Build architecture-independent files here.
binary-indep: build install
# We have nothing to do by default.

# Build architecture-dependent files here.
binary-arch: build install
#	dh_testversion
	dh_testdir
	dh_testroot
	dh_installdocs
	dh_installexamples
	dh_installmenu
#	dh_installemacsen
	dh_installinit --init-script=irda
	dh_installcron
	dh_installdebconf
	dh_installmanpages -pirda-common -Pdebian/irda-common
	if [ "$(DEB_BUILD_ARCH)" = "i386" ]; then \
		dh_installmanpages -pirda-common -Pdebian/irda-common findchip.1; \
	fi
#	dh_installmanpages -pirda-tools -Pdebian/irda-tools irdadump.8 irdaping.8 irpsion5.8
	dh_movefiles -pirda-tools --sourcedir=debian/irda-common \
		usr/share/man/man8/irdadump.8 \
		usr/share/man/man8/irdaping.8 \
		usr/share/man/man8/irpsion5.8
	dh_installchangelogs
	dh_strip
	dh_compress
	dh_fixperms
#	dh_suidregister
	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
#	dh_makeshlibs
	dh_md5sums
	dh_builddeb

source diff:                                                                  
	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary install