File: rules

package info (click to toggle)
libunicode-map-perl 0.112-11
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd, stretch
  • size: 1,176 kB
  • ctags: 183
  • sloc: perl: 1,170; makefile: 20; sh: 10
file content (32 lines) | stat: -rwxr-xr-x 738 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
#!/usr/bin/make -f
## uncomment this to turn on verbose mode
#export DH_VERBOSE=1

TMP = $(CURDIR)/debian/libunicode-map-perl

b% c% i%:
	dh $@

override_dh_auto_configure: fix-big5
	dh_auto_configure

override_dh_clean:
	[ ! -f fix-big5-stamp ] || mv debian/BIG5.map.dist Map/EASTASIA/BIG5.map
	dh_clean

override_dh_auto_install:
	dh_auto_install
	# Neither install scripts nor their man-pages
	$(RM) -rvf $(TMP)/usr/bin $(TMP)/usr/share/man/man1

override_dh_compress:
	dh_compress -Xmkmapfile

# fix the BIG5 map on the fly
fix-big5: fix-big5-stamp
fix-big5-stamp:
	dh_testdir
	sh debian/fix-big5 > debian/BIG5.map.new
	mv Map/EASTASIA/BIG5.map debian/BIG5.map.dist
	mv debian/BIG5.map.new Map/EASTASIA/BIG5.map
	touch fix-big5-stamp