mirror of
https://github.com/termux-pacman/glibc-packages.git
synced 2024-11-23 14:46:18 +00:00
f7734d14f3
- adding `__shmctl64` - disabling the `epoll_pwait2` system call
43 lines
1.1 KiB
Bash
43 lines
1.1 KiB
Bash
#!@TERMUX_PREFIX@/bin/sh
|
|
|
|
set -e
|
|
|
|
LOCALEGEN=@TERMUX_PREFIX@/etc/locale.gen
|
|
LOCALES=@TERMUX_PREFIX@/share/i18n/locales
|
|
if [ -n "$POSIXLY_CORRECT" ]; then
|
|
unset POSIXLY_CORRECT
|
|
fi
|
|
|
|
|
|
[ -f $LOCALEGEN -a -s $LOCALEGEN ] || exit 0;
|
|
|
|
# Remove all old locale dir and locale-archive before generating new
|
|
# locale data.
|
|
rm -rf @TERMUX_PREFIX@/lib/locale/* || true
|
|
|
|
umask 022
|
|
|
|
is_entry_ok() {
|
|
if [ -n "$locale" -a -n "$charset" ] ; then
|
|
true
|
|
else
|
|
echo "error: Bad entry '$locale $charset'"
|
|
false
|
|
fi
|
|
}
|
|
|
|
echo "Generating locales..."
|
|
while read locale charset; do \
|
|
case $locale in \#*) continue;; "") continue;; esac; \
|
|
is_entry_ok || continue
|
|
echo -n " `echo $locale | sed 's/\([^.\@]*\).*/\1/'`"; \
|
|
echo -n ".$charset"; \
|
|
echo -n `echo $locale | sed 's/\([^\@]*\)\(\@.*\)*/\2/'`; \
|
|
echo -n '...'; \
|
|
if [ -f $LOCALES/$locale ]; then input=$locale; else \
|
|
input=`echo $locale | sed 's/\([^.]*\)[^@]*\(.*\)/\1\2/'`; fi; \
|
|
localedef --no-archive -i $input -c -f $charset -A @TERMUX_PREFIX@/share/locale/locale.alias $locale; \
|
|
echo ' done'; \
|
|
done < $LOCALEGEN
|
|
echo "Generation complete."
|