1
0
mirror of https://gitlab.com/openlp/packaging.git synced 2024-07-27 17:08:21 +00:00
packaging/launchpad-ppa/Makefile

18 lines
384 B
Makefile
Raw Normal View History

#!/usr/bin/make -f
# -*- makefile -*-
build:
mkdir -p resources/i18n/qm
for TSFILE in resources/i18n/*.ts; do\
lrelease-qt4 $$TSFILE -qm resources/i18n/qm/`basename $$TSFILE .ts`.qm;\
done
install:
mkdir -p $(DESTDIR)/usr/share/openlp/i18n
cd resources/i18n/qm && for QMFILE in*.qm; do\
mv $QMFILE $(DESTDIR)/usr/share/openlp/i18n;\
done
clean:
rm -fR resources/i18n/qm