blob: ea10b937f785eda9274468ee7cb1d5c08197d0e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/make -f
LDFLAGS += -Wl,-z,defs -Wl,--as-needed
%:
dh $@ --with translations
override_dh_install:
cd po; intltool-update --pot --verbose
dh_install --fail-missing
# Language packs
for d in $$(find debian/indicator-datetime -type f \( -name "*.desktop" -o -name "*.directory" \) ); do \
sed -ri '/^(Name|GenericName|Comment|X-GNOME-FullName)\[/d' $$d; \
echo "X-Ubuntu-Gettext-Domain=indicator-datetime" >> $$d; \
done;
override_dh_auto_test:
sh debian/locale-gen
LOCPATH="$(CURDIR)/locales" dh_auto_test
|