File: rules

package info (click to toggle)
fonts-dustin 20030517-14
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 780 kB
  • sloc: makefile: 11
file content (17 lines) | stat: -rwxr-xr-x 472 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make -f
%:
	dh $@

override_dh_install:
	# Installing package
	install -d -m 0755 debian/fonts-dustin/usr/share/fonts/truetype/dustin

	cd debian/fonts-dustin/usr/share/fonts/truetype/dustin && \
	for ARCHIVE in $(CURDIR)/*.zip; \
	do \
		TZ=UTC unzip $$ARCHIVE '*.ttf' || exit 1; \
	done

	# Fixing file names
	mv "debian/fonts-dustin/usr/share/fonts/truetype/dustin/It wasn't me.ttf" \
		"debian/fonts-dustin/usr/share/fonts/truetype/dustin/It_wasn_t_me.ttf"