tinycm view Makefile @ rev 12

Misc small fixes
author Christophe Lincoln <pankso@slitaz.org>
date Sat Jan 04 00:59:43 2014 +0100 (2014-01-04)
parents 6841b2e2379d
children 941ba53b4335
line source
1 # Makefile for SliTaz Bugs.
2 #
4 PACKAGE="tinycm"
5 PREFIX?=/usr
6 DESTDIR?=
7 WEB?=/var/www/cgi-bin/tinycm
8 LOGIN?=/var/lib/slitaz
9 LINGUAS?=
11 all:
13 # i18n
15 pot:
16 xgettext -o po/tinycm.pot -L Shell --package-name="TinyCM" \
17 ./index.cgi
19 msgmerge:
20 @for l in $(LINGUAS); do \
21 echo -n "Updating $$l po file."; \
22 msgmerge -U po/$$l.po po/$(PACKAGE).pot; \
23 done;
25 msgfmt:
26 @for l in $(LINGUAS); do \
27 echo "Compiling $$l mo file..."; \
28 mkdir -p po/mo/$$l/LC_MESSAGES; \
29 msgfmt -o po/mo/$$l/LC_MESSAGES/$(PACKAGE).mo po/$$l.po; \
30 done;
32 # Install
34 install:
35 install -m 0700 -d $(DESTDIR)$(LOGIN)/people
36 install -m 0700 -d $(DESTDIR)$(LOGIN)/auth
37 install -m 0755 -d $(DESTDIR)$(WEB)/content
38 install -m 0755 -d $(DESTDIR)$(WEB)/cache
39 #install -m 0777 -d $(DESTDIR)$(PREFIX)/share/applications
40 #install -m 0777 -d $(DESTDIR)$(PREFIX)/share/locale
42 cp -a config.cgi favicon.ico index.cgi README style.css \
43 images lib plugins $(DESTDIR)$(WEB)
45 #install -m 0644 data/tinycm.desktop \
46 # $(DESTDIR)$(PREFIX)/share/applications
47 #cp -a po/mo/* $(DESTDIR)$(PREFIX)/share/locale
49 touch $(DESTDIR)$(LOGIN)/auth/people
50 chmod 0600 $(DESTDIR)$(LOGIN)/auth/people
51 chown -R www.www $(DESTDIR)$(LOGIN)/auth
52 chown -R www.www $(DESTDIR)$(LOGIN)/people
53 chown www.www $(DESTDIR)$(WEB)/content
54 chown www.www $(DESTDIR)$(WEB)/cache
56 uninstall:
57 rm -rf $(DESTDIR)$(WEB)
58 #rm $(DESTDIR)$(PREFIX)/share/applications/tinycm.desktop