blob: 1c52f9b77c8a85c29e5acfd26f24a0e8b482b6c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/make -f
# hardening
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@ --buildsystem=cmake
override_dh_auto_build:
$(CURDIR)/resources/locale/compile-po.sh
dh_auto_build
override_dh_auto_clean:
dh_auto_clean
$(RM) $(CURDIR)/resources/locale/*/LC_MESSAGES/*.mo
|