File: rules

package info (click to toggle)
tkcvs 8.2.3-1.2
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye, buster
  • size: 2,436 kB
  • sloc: tcl: 24,466; sh: 280; perl: 166; makefile: 49
file content (67 lines) | stat: -rwxr-xr-x 1,435 bytes parent folder | download | duplicates (3)
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
#!/usr/bin/make -f

#export DH_VERBOSE=1

build: build-arch build-indep
build-arch: build-stamp
build-indep: build-stamp
build-stamp:
	dh_testdir
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	-rm -f build-stamp
	dh_clean
	-rm -f tkcvs/tkcvs

# Build architecture-independent files here.
binary-indep: build
#	dh_testversion
	dh_testdir
	dh_testroot
	dh_prep
	dh_installdirs
	dh_install debian/tkcvs.desktop usr/share/applications
	dh_install debian/tkcvs.xpm usr/share/pixmaps

	cp tkcvs/tkcvs.tcl debian/tkcvs/usr/bin/tkcvs
	cp tkdiff/tkdiff debian/tkcvs/usr/bin/tkdiff

	sed -e '1s:wish8\..*:wish:' \
	        contrib/tkdirdiff >debian/tkcvs/usr/bin/tkdirdiff

	chmod +x debian/tkcvs/usr/bin/tkcvs
	cp -r tkcvs/bitmaps debian/tkcvs/usr/share/tkcvs
	cp tkcvs/*.tcl tkcvs/tclIndex \
	  debian/tkcvs/usr/share/tkcvs
	mv debian/tkcvs/usr/share/tkcvs/tkcvs_def.tcl debian/tkcvs/etc/tkcvs/
	chmod +x debian/tkcvs/usr/bin/tkdirdiff

	dh_installdocs
	dh_installexamples
	dh_installmenu
	dh_installcron
	dh_installman
	dh_installchangelogs CHANGELOG.txt
	dh_strip
	dh_compress
	dh_fixperms

	chmod u+w debian/tkcvs/etc/tkcvs/tkcvs_def.tcl

	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
	dh_md5sums
	dh_builddeb

binary-arch: build
# We have nothing to do by default.

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