File: rules

package info (click to toggle)
slimevolley 2.4.2%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 4,224 kB
  • ctags: 414
  • sloc: ansic: 3,651; makefile: 21
file content (29 lines) | stat: -rwxr-xr-x 805 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
#!/usr/bin/make -f
#export DH_VERBOSE=1

%:
	dh $@ --parallel


override_dh_auto_configure:
	dh_auto_configure -- \
		-DCMAKE_INSTALL_PREFIX=/usr \
		-DBIN_DIR=games \
		-DATA_DIR=/usr/share/games/slimevolley \
		-DDATA_INSTALL_DIR=/usr/share/games/slimevolley

override_dh_auto_install:
	dh_auto_install
	$(RM) $(CURDIR)/debian/tmp/usr/share/games/slimevolley/themes/default/police.ttf

get-orig-source:
	mkdir get-orig-source-tmp
	uscan --download-current-version --destdir=get-orig-source-tmp && \
		cd get-orig-source-tmp && \
		tar xzf slimevolley_2.4.2.orig.tar.gz && \
		cp slimevolley-2.4.2/data/themes/mushrooms/police.ttf \
			slimevolley-2.4.2/data/themes/default/police.ttf && \
		tar zcf ../../slimevolley_2.4.2+dfsg.orig.tar.gz slimevolley-2.4.2 && \
		cd ..
	$(RM) -rf get-orig-source-tmp