mirror of
https://github.com/koreader/koreader.git
synced 2025-12-13 20:36:53 +01:00
Instead of splitting remove / exclusion of unwanted files in 2-3 places (`all` rule, `update` rule, and update script in some cases), install the same files in debug & release builds, and exclude unwanted stuff when generating the update. This should finally fix the CI issue with OCR tests (since we don't remove the `data/dict` & `data/tessdata` directories on release build anymore).
21 lines
752 B
Makefile
21 lines
752 B
Makefile
KOBO_DIR = $(PLATFORM_DIR)/kobo
|
|
KOBO_PACKAGE = koreader-$(DIST)$(KODEDUG_SUFFIX)-$(VERSION).zip
|
|
KOBO_PACKAGE_OTA = koreader-$(DIST)$(KODEDUG_SUFFIX)-$(VERSION).targz
|
|
|
|
define UPDATE_PATH_EXCLUDES +=
|
|
$(filter-out tools/kobo%,$(wildcard tools/*))
|
|
endef
|
|
|
|
update: all
|
|
# ensure that the binaries were built for ARM
|
|
file --dereference $(INSTALL_DIR)/koreader/luajit | grep ARM
|
|
# Kobo launching scripts
|
|
$(SYMLINK) $(KOBO_DIR)/koreader.png $(INSTALL_DIR)/
|
|
$(SYMLINK) $(KOBO_DIR)/*.sh $(INSTALL_DIR)/koreader/
|
|
$(SYMLINK) $(COMMON_DIR)/spinning_zsync $(INSTALL_DIR)/koreader/
|
|
# Create packages.
|
|
$(strip $(call mkupdate,--manifest-transform=/^koreader\.png$$/d $(KOBO_PACKAGE))) koreader.png
|
|
$(strip $(call mkupdate,$(KOBO_PACKAGE_OTA)))
|
|
|
|
PHONY += update
|