Be able to make the release of libkiwix on android.

This commit is contained in:
Matthieu Gautier 2022-06-09 10:31:09 +02:00
parent aa4250dd41
commit 51ff5e58bb
1 changed files with 11 additions and 0 deletions

View File

@ -46,6 +46,10 @@ PLATFORM_TO_RELEASE = {
"win32_static": "win-i686", "win32_static": "win-i686",
"armhf_static": "{os}-armhf".format(os=RELEASE_OS_NAME), "armhf_static": "{os}-armhf".format(os=RELEASE_OS_NAME),
"i586_static": "{os}-i586".format(os=RELEASE_OS_NAME), "i586_static": "{os}-i586".format(os=RELEASE_OS_NAME),
"android_arm": "android-arm",
"android_arm64": "android-arm64",
"android_x86": "android-x86",
"android_x86_64": "android-x86_64",
} }
FLATPAK_HTTP_GIT_REMOTE = "https://github.com/flathub/org.kiwix.desktop.git" FLATPAK_HTTP_GIT_REMOTE = "https://github.com/flathub/org.kiwix.desktop.git"
@ -93,6 +97,13 @@ EXPORT_FILES = {
"include/zim/**/*.h", "include/zim/**/*.h",
), ),
), ),
"libkiwix": (
INSTALL_DIR,
(
"lib/libkiwix.so",
"include/kiwix/**/*.h"
),
),
} }
DATE = date.today().isoformat() DATE = date.today().isoformat()