root-repo: Fix repos URL

This commit is contained in:
Tee KOBAYASHI 2023-01-22 00:09:52 +09:00 committed by xtkoba
parent 2faf193ca2
commit c3d4469a31
1 changed files with 3 additions and 3 deletions

View File

@ -3,7 +3,7 @@ TERMUX_PKG_DESCRIPTION="Package repository containing programs for rooted device
TERMUX_PKG_LICENSE="Apache-2.0"
TERMUX_PKG_MAINTAINER="Henrik Grimler @Grimler91"
TERMUX_PKG_VERSION=2.4
TERMUX_PKG_REVISION=1
TERMUX_PKG_REVISION=2
TERMUX_PKG_DEPENDS="termux-keyring"
TERMUX_PKG_SKIP_SRC_EXTRACT=true
TERMUX_PKG_PLATFORM_INDEPENDENT=true
@ -12,9 +12,9 @@ termux_step_make_install() {
mkdir -p $TERMUX_PREFIX/etc/apt/sources.list.d
{
echo "# The root termux repository, with cloudflare cache"
echo "deb https://packages-cf.termux.dev/apt/termux-main/ root stable"
echo "deb https://packages-cf.termux.dev/apt/termux-root/ root stable"
echo "# The root termux repository, without cloudflare cache"
echo "# deb https://packages.termux.dev/apt/termux-main/ root stable"
echo "# deb https://packages.termux.dev/apt/termux-root/ root stable"
} > $TERMUX_PREFIX/etc/apt/sources.list.d/root.list
}