c4b40926bd
It is not used anymore, now that translations are bundled with the extension. Also, in the zip files it ended up with my home folder, which is not nice. Cherry-picked from master, added code to load translation from within the extension folder.
14 lines
404 B
Makefile
14 lines
404 B
Makefile
include $(top_srcdir)/include.mk
|
|
|
|
dist_extension_DATA = extension.js stylesheet.css
|
|
nodist_extension_DATA = metadata.json $(EXTRA_EXTENSION)
|
|
|
|
EXTRA_DIST = metadata.json.in
|
|
|
|
metadata.json: metadata.json.in $(top_builddir)/config.status
|
|
$(AM_V_GEN) sed -e "s|[@]uuid@|$(uuid)|" \
|
|
-e "s|[@]shell_current@|$(PACKAGE_VERSION)|" \
|
|
-e "s|[@]url@|$(extensionurl)|" $< > $@
|
|
|
|
CLEANFILES = metadata.json
|