inkstitch/Makefile

53 wiersze
2.0 KiB
Makefile
Czysty Zwykły widok Historia

dist: version locales inx
2020-08-18 18:52:47 +00:00
bash bin/build-python
bash bin/build-electron
bash bin/build-distribution-archives
distclean:
rm -rf build dist inx locales artifacts win mac *.spec *.tar.gz *.zip electron/node_modules electron/dist
.PHONY: inx
inx: version locales
mkdir -p inx
2019-11-15 18:09:53 +00:00
python bin/generate-inx-files; \
.PHONY: messages.po
2021-09-27 09:33:07 +00:00
messages.po: inx
rm -f messages.po
xgettext inx/*.inx --its=its/inx.its -o messages-inx.po
2021-09-27 09:33:07 +00:00
# There seems to be no propper way to set the charset to utf-8
sed -i 's/charset=CHARSET/charset=UTF-8/g' messages-inx.po
bin/pyembroidery-gettext > pyembroidery-format-descriptions.py
bin/inkstitch-fonts-gettext > inkstitch-fonts-metadata.py
# After the inx files are finished building, we don't need the src/ folder anymore.
# We don't want babel to grab possible translation strings from that folder, so let's remove it
rm -rf src/
2020-04-28 16:34:05 +00:00
pybabel extract -o messages-babel.po -F babel.conf --add-location=full --add-comments=l10n,L10n,L10N --sort-by-file --strip-comments -k N_ -k '$$gettext' .
rm pyembroidery-format-descriptions.py inkstitch-fonts-metadata.py
2020-05-21 00:40:56 +00:00
cd electron && yarn --link-duplicates --pure-lockfile
2020-04-28 16:34:05 +00:00
find electron/src -name '*.html' -o -name '*.js' -o -name '*.vue' | xargs electron/node_modules/.bin/gettext-extract --quiet --attribute v-translate --output messages-vue.po
msgcat -o messages.po messages-babel.po messages-vue.po messages-inx.po
2020-04-28 16:34:05 +00:00
2021-03-05 16:19:25 +00:00
electron/src/renderer/assets/translations.json: $(wildcard translations/messages_*.po)
find translations -name '*.po' -a ! -empty | \
2020-04-28 16:34:05 +00:00
xargs electron/node_modules/.bin/gettext-compile --output electron/src/renderer/assets/translations.json
%.po: %.mo
msgunfmt -o $@ $<
2018-09-15 17:01:41 +00:00
.PHONY: clean
clean:
rm -f messages.po pyembroidery-format-descriptions.py
.PHONY: locales
locales:
bash bin/generate-translation-files
2018-08-22 18:54:14 +00:00
.PHONY: version
version:
bash bin/generate-version-file
2018-08-22 18:54:14 +00:00
.PHONY: style
style:
flake8 . --count --max-complexity=10 --max-line-length=150 --statistics --exclude=pyembroidery,__init__.py,electron,build,src