0
0
mirror of https://github.com/termux-pacman/glibc-packages.git synced 2024-11-11 11:59:20 +00:00
glibc-packages/get-build-package.sh
Ivan Max d94794cba3
fixing packages and compilation environment (#285)
get-build-package.sh: adding copying of `ndk-patches` directory so that bionic-based packages can be compiled
gpkg{dbus,docbook-*}: fixing shell paths for setup scripts (only relevant for debian-format packages)
2024-09-03 23:18:19 +03:00

15 lines
365 B
Bash
Executable File

#!/bin/bash
# Script that installs build-package.sh to compile glibc packages
BRANCH="master"
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