Skip to content

Commit

Permalink
Package ICU data with libzim/libkiwix.
Browse files Browse the repository at this point in the history
  • Loading branch information
mgautierfr committed Nov 2, 2023
1 parent 2a5a5c3 commit fb6d6b8
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/scripts/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,10 @@ def major_version(version: str) -> str:
"lib/libzim.dylib",
"lib/*/libzim.pc",
"include/zim/**/*.h",
"share/icu/{}/icudt{}l.dat".format(
base_deps_versions["icu4c"],
major_version(base_deps_versions["icu4c"])
)
),
),
"libkiwix": (
Expand All @@ -110,7 +114,11 @@ def major_version(version: str) -> str:
),
"lib/libkiwix.dylib",
"lib/*/libkiwix.pc",
"include/kiwix/**/*.h"
"include/kiwix/**/*.h",
"share/icu/{}/icudt{}l.dat".format(
base_deps_versions["icu4c"],
major_version(base_deps_versions["icu4c"])
)
),
),
}
Expand Down

0 comments on commit fb6d6b8

Please sign in to comment.