File: rules

package info (click to toggle)
bsdgames 2.5-4
  • links: PTS
  • area: main
  • in suites: slink
  • size: 8,412 kB
  • ctags: 4,665
  • sloc: ansic: 59,763; sh: 643; yacc: 327; lex: 79; makefile: 53; sed: 13; csh: 5
file content (81 lines) | stat: -rwxr-xr-x 2,518 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
#!/usr/bin/make -f
# Sample debian/rules that uses debhelper. GNU copyright 1997 by Joey Hess.

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

build: build-stamp
build-stamp:
	dh_testdir
	./configure
	$(MAKE)
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp
	dh_clean
	-$(MAKE) -i distclean

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

# Build architecture-dependent files here.
binary-arch: build
	dh_testdir
	dh_testroot
	dh_clean
	dh_installdirs usr/doc/bsdgames usr/share/games/bsdgames/phantasia

	$(MAKE) install
	cp atc/BUGS debian/tmp/usr/doc/bsdgames/BUGS.atc
	cp hunt/README debian/tmp/usr/doc/bsdgames/README.hunt
	cp hunt/README.linux debian/tmp/usr/doc/bsdgames/README.linux.hunt
	cp phantasia/README debian/tmp/usr/doc/bsdgames/README.phantasia
	cp boggle/README debian/tmp/usr/doc/bsdgames/README.boggle
	cp boggle/README.linux debian/tmp/usr/doc/bsdgames/README.linux.boggle
	# Since factor is not installed, and primes.6 is a symlink to
	# factor.6, I need to change that to the actual man page.
	-rm -f debian/tmp/usr/man/man6/factor.6.gz \
		debian/tmp/usr/man/man6/primes.6
	cp factor/factor.6 debian/tmp/usr/man/man6/primes.6
	# Move phantasia's binary state files into /usr, they are copied
	# back to /var in the postinst.
	mv debian/tmp/var/lib/games/bsdgames/phantasia/{monsters,void} \
		debian/tmp/usr/share/games/bsdgames/phantasia/

	dh_installdocs ChangeLog ChangeLog.0 TODO README \
		trek/USD.doc/trek.me SECURITY THANKS AUTHORS BUGS YEAR2000
	dh_installexamples
	dh_installmenu
	dh_installcron
#	dh_installmanpages
#	dh_undocumented
	dh_installchangelogs -k NEWS
	dh_strip
	dh_compress
	dh_fixperms

	chmod -R u+rw debian/tmp/usr/
	# Games with score files need to be set up sgid games.
	chown root.games debian/tmp/usr/games/{atc,battlestar,canfield,cribbage,robots,snake,tetris-bsd,phantasia,sail}
	chmod g+s debian/tmp/usr/games/{atc,battlestar,canfield,cribbage,robots,snake,tetris-bsd,phantasia,sail}
	# The game directories need to be sgid too, and let's
	# remove all the zero byte score files in them.
	chown root.games debian/tmp/var/lib/games/bsdgames/{,phantasia}
	chmod g+rws debian/tmp/var/lib/games/bsdgames/{,phantasia}
	find debian/tmp/var/lib/games/bsdgames -size 0 -exec rm {} \;

	dh_suidregister

	dh_installdeb
	dh_shlibdeps
	dh_gencontrol
#	dh_makeshlibs
	dh_md5sums
	dh_builddeb

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