File: rules

package info (click to toggle)
gnome-shell-extension-shortcuts 1.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 980 kB
  • sloc: javascript: 896; sh: 92; xml: 44; makefile: 11
file content (14 lines) | stat: -rwxr-xr-x 277 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/make -f
%:
	dh $@

override_dh_auto_build:
	for po in locale/*/LC_MESSAGES/*.po; do \
		msgfmt -cv -o $${po%.po}.mo $$po; \
	done
	glib-compile-schemas --targetdir=src/schemas src/schemas
	dh_auto_build

override_dh_clean:
	rm -f locale/*/LC_MESSAGES/*.mo
	dh_clean