File: rules

package info (click to toggle)
fonts-roboto-fontface 0.4.3-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 13,364 kB
  • ctags: 1
  • sloc: makefile: 15
file content (22 lines) | stat: -rwxr-xr-x 774 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/make -f

UPSTREAM_GIT = git://github.com/choffmeister/roboto-fontface-bower.git
-include /usr/share/openstack-pkg-tools/pkgos.make

%:
	dh $@

override_dh_install:
	dh_install

	# Make a symlink of all fonts in /usr/share/fonts-roboto-fontface/fonts
	# and fix the x flag
	mkdir -p debian/fonts-roboto-fontface/usr/share/fonts-roboto-fontface/fonts
	for i in truetype eot svg woff ; do \
		chmod -x debian/fonts-roboto-fontface/usr/share/fonts/$$i/roboto-fontface/* ; \
		for j in `find debian/fonts-roboto-fontface/usr/share/fonts/$$i/roboto-fontface -type f` ; do \
			FNTFILE=`basename $$j` ; \
			ln -s ../../fonts/$$i/roboto-fontface/$$FNTFILE debian/fonts-roboto-fontface/usr/share/fonts-roboto-fontface/fonts/$$FNTFILE ; \
			echo $$j ; \
		done ; \
	done