tiramisu/Makefile

74 lines
2.0 KiB
Makefile
Raw Normal View History

2012-07-13 11:22:00 +02:00
#!/usr/bin/make
PACKAGE := tiramisu
2012-07-13 11:22:00 +02:00
INSTALL := install
INSTALL_DATA := install -m 644
INSTALL_PROGRAM := install -m 755
INSTALL_DIR := install -m 755 -d
TRADUC_DIR = translations
TRADUC_DEST = $(DESTDIR)/usr/share/locale
2012-07-13 11:22:00 +02:00
PYTHON_OPTS =
ifneq ($(DESTDIR),)
PYTHON_OPTS += --root $(DESTDIR)
endif
2013-09-01 23:09:50 +02:00
VERSION := 1.0rc
VERSION_FILE := version.in
# Build translation files
define build_translation
if [ -d ${1} ]; then \
for f in `find ${1} -name "*.po"`; do \
msgfmt -o `dirname $$f`/`basename -s ".po" $$f`.mo $$f || true; \
done; \
fi
endef
# Install Traduction
define install_translation
if [ -d ${1} ]; then \
for file in `find ${1} -name "*.mo"`; do \
$(INSTALL_DIR) $(TRADUC_DEST)/`echo $$file | cut -d '/' -f 2` || true; \
$(INSTALL_DIR) $(TRADUC_DEST)/`echo $$file | cut -d '/' -f 2`/LC_MESSAGES || true; \
$(INSTALL_DATA) $$file $(TRADUC_DEST)/`echo $$file | cut -d '/' -f 2`/LC_MESSAGES || true; \
done; \
fi
endef
2013-09-01 23:09:50 +02:00
all: build-lang
2012-07-13 11:22:00 +02:00
clean:
$(RM) -r build
2013-09-01 23:09:50 +02:00
$(RM) -r $(PACKAGE).egg-info/
$(RM) -r $(VERSION_FILE)
$(RM) -r $(TRADUC_DIR)/*/*.mo
2013-04-23 14:14:19 +02:00
#test: clean
# py.test
# Build or update Portable Object Base Translation for gettext
build-pot:
2013-09-01 23:09:50 +02:00
pygettext.py -p translations/ -o $(PACKAGE).pot `find $(PACKAGE)/ -name "*.py"`
build-lang:
$(call build_translation, $(TRADUC_DIR))
2013-09-01 23:09:50 +02:00
install-lang:
$(INSTALL_DIR) $(TRADUC_DEST)
$(call install_translation, $(TRADUC_DIR))
install: version.in install-lang
2012-07-13 11:22:00 +02:00
python setup.py install --no-compile $(PYTHON_OPTS)
# List in .PHONY to force generation at each call
version.in:
2013-09-01 23:09:50 +02:00
echo -n $(VERSION) > $(VERSION_FILE)
dist:
git archive --format=tar --prefix $(PACKAGE)-$(VERSION)/ HEAD | gzip -9 > $(PACKAGE)-$(VERSION).tar.gz
.PHONY: all clean build-pot build-lang install-lang install version.in dist