0
0
mirror of https://github.com/termux-pacman/glibc-packages.git synced 2025-02-23 09:16:10 +00:00
glibc-packages/get-build-package.sh
Maxython cd3421fd9b gpkg/glibc: global update
- added the glibc32 subpackage
 - updated fakesyscall handling scheme
 - added all disabled syscalls to fakesyscall list
 - added new syscalls to fakesyscall list
 - disabled removal of old locales in `locale-gen`
 - implemented syslog function, which is configured to work with the android log system
 - implemented analog variables `LD_*` to customize glibc environment without affecting bionic environment
 - improved source code for flexible glibc compilation
2024-12-30 15:15:02 +03:00

15 lines
380 B
Bash
Executable File

#!/bin/bash
# Script that installs build-package.sh to compile glibc packages
BRANCH="adding-glibc32-prefix"
git clone --depth 1 -b ${BRANCH} --single-branch https://github.com/termux/termux-packages.git
for i in build-package.sh clean.sh packages x11-packages root-packages scripts ndk-patches; do
rm -fr ./${i}
cp -r ./termux-packages/${i} ./
done
rm -fr termux-packages