tinycm view Makefile @ rev 18

Add a desktop file and up doc about images
author Christophe Lincoln <pankso@slitaz.org>
date Sun Jan 05 01:03:58 2014 +0100 (2014-01-05)
parents b37aa11da7df
children 2d3ea386014a
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 content $(DESTDIR)$(WEB)
45 install -m 0644 data/tinycm.desktop \
46 $(DESTDIR)$(PREFIX)/share/applications
47 #cp -a po/mo/* $(DESTDIR)$(PREFIX)/share/locale
49 # Auth system may be used by an other app
50 touch $(DESTDIR)$(LOGIN)/auth/people
51 chmod 0600 $(DESTDIR)$(LOGIN)/auth/people
52 chown -R www.www $(DESTDIR)$(LOGIN)/auth
53 chown -R www.www $(DESTDIR)$(LOGIN)/people
54 chown www.www $(DESTDIR)$(WEB)/content
55 chown www.www $(DESTDIR)$(WEB)/cache
57 uninstall:
58 rm -rf $(DESTDIR)$(WEB)
59 rm $(DESTDIR)$(PREFIX)/share/applications/tinycm.desktop