From dcd3c56f2fd2065c8ac444f8f5e1040d342bd47e Mon Sep 17 00:00:00 2001 From: termux-pacman-bot Date: Wed, 7 Jan 2026 08:46:16 +0000 Subject: [PATCH] Update repo --- scripts/setup-cgct.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/scripts/setup-cgct.sh b/scripts/setup-cgct.sh index baa8d07fcc..b342ec210b 100755 --- a/scripts/setup-cgct.sh +++ b/scripts/setup-cgct.sh @@ -64,7 +64,10 @@ done if [ ! -f "${CGCT_DIR}/lib/libgcc_s.so" ]; then pkgname="gcc-libs" echo "Installing ${pkgname} for CGCT..." - curl -L "https://archlinux.org/packages/core/${ARCH}/${pkgname}/download/" -o "${TMPDIR_CGCT}/${pkgname}.pkg.zstd" + #curl -L "https://archlinux.org/packages/core/${ARCH}/${pkgname}/download/" -o "${TMPDIR_CGCT}/${pkgname}.pkg.zstd" + termux_download "https://archive.archlinux.org/packages/g/gcc-libs/gcc-libs-15.1.1+r7+gf36ec88aa85a-1-x86_64.pkg.tar.zst" \ + "${TMPDIR_CGCT}/${pkgname}.pkg.zstd" \ + "6eedd2e4afc53e377b5f1772b5d413de3647197e36ce5dc4a409f993668aa5ed" tar --use-compress-program=unzstd -xf "${TMPDIR_CGCT}/${pkgname}.pkg.zstd" -C "${TMPDIR_CGCT}" usr/lib cp -r "${TMPDIR_CGCT}/usr/lib/"* "${CGCT_DIR}/lib" fi