slitaz-forge view pkgs/Makefile @ rev 274

pkgs: fix Makefile
author Christophe Lincoln <pankso@slitaz.org>
date Fri Apr 13 01:29:18 2012 +0200 (2012-04-13)
parents 2a85be732514
children c0e954250657
line source
1 # Makefile for TazPkg Web.
2 #
4 PACKAGE="tazpkg-web"
5 LINGUAS?=de fr pt_BR ru zh
7 all: msgfmt
9 # i18n
11 pot:
12 xgettext -o po/$(PACKAGE).pot -L Shell \
13 --package-name="TazPkg Web" \
14 ./search.sh ./lib/header.sh
16 msgmerge:
17 @for l in $(LINGUAS); do \
18 echo -n "Updating $$l po file."; \
19 msgmerge -U po/$$l.po po/$(PACKAGE).pot; \
20 done;
22 msgfmt:
23 @for l in $(LINGUAS); do \
24 echo "Compiling $$l mo file..."; \
25 mkdir -p po/mo/$$l/LC_MESSAGES; \
26 msgfmt -o po/mo/$$l/LC_MESSAGES/$(PACKAGE).mo po/$$l.po; \
27 done;
29 # Install
31 install-msg: msgfmt
32 cp -a po/mo/* /usr/share/locale
34 # Clean source
36 clean:
37 rm -rf po/mo
38 rm -f po/*.mo
39 rm -f po/*.*~