mirror of
https://github.com/termux-pacman/glibc-packages.git
synced 2024-11-11 11:59:20 +00:00
d94794cba3
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)
15 lines
365 B
Bash
Executable File
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
|